mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-06 18:28:00 -05:00
14 lines
243 B
Go
14 lines
243 B
Go
// +build !linux
|
|
// +build !confonly
|
|
|
|
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
|
|
}
|