hub_other.go 222 B

123456789101112131415
  1. // +build !linux
  2. package udp
  3. import (
  4. v2net "github.com/v2ray/v2ray-core/common/net"
  5. )
  6. func SetOriginalDestOptions(fd int) error {
  7. return nil
  8. }
  9. func RetrieveOriginalDest(oob []byte) v2net.Destination {
  10. return nil
  11. }