mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
14 lines
199 B
Go
14 lines
199 B
Go
|
//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
|
||
|
}
|