mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-25 10:01:28 +00:00
14 lines
280 B
Go
14 lines
280 B
Go
|
// +build !linux,!freebsd
|
||
|
// +build !confonly
|
||
|
|
||
|
package tcp
|
||
|
|
||
|
import (
|
||
|
"github.com/xtls/xray-core/v1/common/net"
|
||
|
"github.com/xtls/xray-core/v1/transport/internet"
|
||
|
)
|
||
|
|
||
|
func GetOriginalDestination(conn internet.Connection) (net.Destination, error) {
|
||
|
return net.Destination{}, nil
|
||
|
}
|