| 12345678910111213 |
- // +build !linux,!freebsd
- // +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
- }
|