mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
14 lines
242 B
Go
14 lines
242 B
Go
//go:build !linux
|
|
|
|
package redir
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
)
|
|
|
|
func GetOriginalDestination(conn net.Conn) (destination *M.AddrPort, err error) {
|
|
return nil, errors.New("unsupported platform")
|
|
}
|