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