sing-box/common/redir/redir_other.go

14 lines
210 B
Go
Raw Permalink Normal View History

2022-08-31 14:21:37 +08:00
//go:build !linux && !darwin
2022-07-15 08:42:02 +08:00
package redir
import (
"net"
"net/netip"
"os"
)
func GetOriginalDestination(conn net.Conn) (destination netip.AddrPort, err error) {
return netip.AddrPort{}, os.ErrInvalid
}