1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 10:15:23 +00:00
v2fly/transport/internet/tagged/tagged.go

11 lines
197 B
Go

package tagged
import (
"context"
"github.com/v2fly/v2ray-core/v4/common/net"
)
type DialFunc func(ctx context.Context, dest net.Destination, tag string) (net.Conn, error)
var Dialer DialFunc