1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-19 19:54:28 -04:00
v2fly/transport/internet/tcp/sockopt_other.go

13 lines
223 B
Go
Raw Normal View History

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