1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-20 02:46:10 -04:00
v2fly/transport/internet/tcp/sockopt_other.go

14 lines
294 B
Go
Raw Normal View History

2021-10-28 06:34:19 -04:00
//go:build !linux && !freebsd
// +build !linux,!freebsd
2016-06-11 19:35:40 -04:00
package tcp
2016-06-11 19:35:40 -04:00
import (
2021-02-16 15:31:50 -05:00
"github.com/v2fly/v2ray-core/v4/common/net"
"github.com/v2fly/v2ray-core/v4/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
}