redir_other.go 210 B

12345678910111213
  1. //go:build !linux && !darwin
  2. package redir
  3. import (
  4. "net"
  5. "net/netip"
  6. "os"
  7. )
  8. func GetOriginalDestination(conn net.Conn) (destination netip.AddrPort, err error) {
  9. return netip.AddrPort{}, os.ErrInvalid
  10. }