mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-02-22 09:13:15 +03:00
9 lines
220 B
Go
9 lines
220 B
Go
|
//go:build !darwin
|
||
|
|
||
|
package net
|
||
|
|
||
|
// OriginalDst uses ioctl to read original destination from /dev/pf
|
||
|
func OriginalDst(conn Conn) (Destination, error) {
|
||
|
return Destination{}, newError("This platform is not supported")
|
||
|
}
|