sing/common/redir/redir_other.go
2022-05-04 19:34:55 +08:00

13 lines
224 B
Go

//go:build !linux
package redir
import (
"errors"
"net"
"net/netip"
)
func GetOriginalDestination(conn net.Conn) (destination netip.AddrPort, err error) {
return netip.AddrPort{}, errors.New("unsupported platform")
}