sing-box/common/redir/redir_other.go
2022-08-31 14:21:37 +08:00

14 lines
210 B
Go

//go:build !linux && !darwin
package redir
import (
"net"
"net/netip"
"os"
)
func GetOriginalDestination(conn net.Conn) (destination netip.AddrPort, err error) {
return netip.AddrPort{}, os.ErrInvalid
}