mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-16 17:38:45 -05:00
13 lines
223 B
Go
13 lines
223 B
Go
// +build !linux
|
|
|
|
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
|
|
}
|