1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-16 04:35:24 +00:00
v2fly/transport/internet/tagged/tagged.go
2022-01-02 15:16:23 +00:00

12 lines
198 B
Go

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