Add SerialVectorisedWriter

This commit is contained in:
世界 2022-10-06 15:47:06 +08:00
parent 3483762200
commit 8dcfcc6959
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
3 changed files with 36 additions and 0 deletions

View file

@ -13,6 +13,10 @@ type Dialer interface {
ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error)
}
type PayloadDialer interface {
DialPayloadContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error)
}
type ParallelDialer interface {
Dialer
DialParallel(ctx context.Context, network string, destination M.Socksaddr, destinationAddresses []netip.Addr) (net.Conn, error)