mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
209 B
13 lines
209 B
9 years ago
|
// +build !linux
|
||
|
|
||
8 years ago
|
package tcp
|
||
9 years ago
|
|
||
|
import (
|
||
8 years ago
|
"v2ray.com/core/common/net"
|
||
8 years ago
|
"v2ray.com/core/transport/internet"
|
||
9 years ago
|
)
|
||
|
|
||
8 years ago
|
func GetOriginalDestination(conn internet.Connection) net.Destination {
|
||
|
return net.Destination{}
|
||
9 years ago
|
}
|