mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-15 05:03:20 +00:00
079d0bd8a9
* Refactor log * Add new log methods * Fix logger test * Change all logging code * Clean up pathObj * Rebase to latest main * Remove invoking method name after the dot
27 lines
735 B
Go
27 lines
735 B
Go
//go:build darwin
|
|
// +build darwin
|
|
|
|
package tcp
|
|
|
|
import (
|
|
"github.com/xtls/xray-core/common/errors"
|
|
"github.com/xtls/xray-core/common/net"
|
|
"github.com/xtls/xray-core/transport/internet"
|
|
"github.com/xtls/xray-core/transport/internet/stat"
|
|
)
|
|
|
|
// GetOriginalDestination from tcp conn
|
|
func GetOriginalDestination(conn stat.Connection) (net.Destination, error) {
|
|
la := conn.LocalAddr()
|
|
ra := conn.RemoteAddr()
|
|
ip, port, err := internet.OriginalDst(la, ra)
|
|
if err != nil {
|
|
return net.Destination{}, errors.New("failed to get destination").Base(err)
|
|
}
|
|
dest := net.TCPDestination(net.IPAddress(ip), net.Port(port))
|
|
if !dest.IsValid() {
|
|
return net.Destination{}, errors.New("failed to parse destination.")
|
|
}
|
|
return dest, nil
|
|
}
|