sing-box/common/redir/redir_other.go

14 lines
199 B
Go
Raw Normal View History

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