mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
13 lines
196 B
Go
13 lines
196 B
Go
//go:build !linux && !darwin
|
|
|
|
package control
|
|
|
|
import (
|
|
"net"
|
|
"net/netip"
|
|
"os"
|
|
)
|
|
|
|
func GetOriginalDestination(conn net.Conn) (netip.AddrPort, error) {
|
|
return netip.AddrPort{}, os.ErrInvalid
|
|
}
|