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