mirror of https://github.com/v2ray/v2ray-core
13 lines
209 B
Go
13 lines
209 B
Go
|
// +build !linux
|
||
|
|
||
|
package tcp
|
||
|
|
||
|
import (
|
||
|
"v2ray.com/core/common/net"
|
||
|
"v2ray.com/core/transport/internet"
|
||
|
)
|
||
|
|
||
|
func GetOriginalDestination(conn internet.Connection) net.Destination {
|
||
|
return net.Destination{}
|
||
|
}
|