github.com/v2fly/v2ray-core/v4@v4.45.2/transport/internet/tcp/sockopt_other.go (about) 1 //go:build !linux && !freebsd && !confonly 2 // +build !linux,!freebsd,!confonly 3 4 package tcp 5 6 import ( 7 "github.com/v2fly/v2ray-core/v4/common/net" 8 "github.com/v2fly/v2ray-core/v4/transport/internet" 9 ) 10 11 func GetOriginalDestination(conn internet.Connection) (net.Destination, error) { 12 return net.Destination{}, nil 13 }