v2ray-core/transport/internet/tcp/sockopt_other.go

14 lines
243 B
Go
Raw Normal View History

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