sockopt_other.go 294 B

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