2016-06-11 23:35:40 +00:00
|
|
|
// +build !linux
|
2019-02-01 19:08:21 +00:00
|
|
|
// +build !confonly
|
2016-06-11 23:35:40 +00:00
|
|
|
|
2017-01-26 19:46:44 +00:00
|
|
|
package tcp
|
2016-06-11 23:35:40 +00:00
|
|
|
|
|
|
|
import (
|
2017-01-13 23:27:45 +00:00
|
|
|
"v2ray.com/core/common/net"
|
2016-08-20 18:55:45 +00:00
|
|
|
"v2ray.com/core/transport/internet"
|
2016-06-11 23:35:40 +00:00
|
|
|
)
|
|
|
|
|
2017-04-18 10:35:54 +00:00
|
|
|
func GetOriginalDestination(conn internet.Connection) (net.Destination, error) {
|
|
|
|
return net.Destination{}, nil
|
2016-06-11 23:35:40 +00:00
|
|
|
}
|