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