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

14 lines
285 B
Go
Raw Normal View History

2021-09-20 16:00:55 +03:00
//go:build !linux && !freebsd
2020-11-25 13:01:53 +02:00
// +build !linux,!freebsd
package tcp
import (
2020-12-04 03:36:16 +02:00
"github.com/xtls/xray-core/common/net"
"github.com/xtls/xray-core/transport/internet/stat"
2020-11-25 13:01:53 +02:00
)
func GetOriginalDestination(conn stat.Connection) (net.Destination, error) {
2020-11-25 13:01:53 +02:00
return net.Destination{}, nil
}