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

12 lines
198 B
Go
Raw Normal View History

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