mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-08 18:36:45 -05:00
7c1ab06206
* remove v2ctl, wv2ray * remove v2ctl, wv2ray build scripts * remove infra/control/main * remove !confonly flag * remove ctlcmd package * remove Confgi.Override func * move commands package into main
13 lines
232 B
Go
13 lines
232 B
Go
// +build !linux,!freebsd
|
|
|
|
package tcp
|
|
|
|
import (
|
|
"v2ray.com/core/common/net"
|
|
"v2ray.com/core/transport/internet"
|
|
)
|
|
|
|
func GetOriginalDestination(conn internet.Connection) (net.Destination, error) {
|
|
return net.Destination{}, nil
|
|
}
|