v2ray-core/transport/internet/tcp/sockopt_other.go

13 lines
223 B
Go

// +build !linux
package tcp
import (
"v2ray.com/core/common/net"
"v2ray.com/core/transport/internet"
)
func GetOriginalDestination(conn internet.Connection) (net.Destination, error) {
return net.Destination{}, nil
}