mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
13 lines
224 B
Go
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")
|
|
}
|