mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
52 lines
1.2 KiB
package singbridge |
|
|
|
import ( |
|
M "github.com/sagernet/sing/common/metadata" |
|
N "github.com/sagernet/sing/common/network" |
|
"github.com/xtls/xray-core/common/net" |
|
) |
|
|
|
func ToNetwork(network string) net.Network { |
|
switch N.NetworkName(network) { |
|
case N.NetworkTCP: |
|
return net.Network_TCP |
|
case N.NetworkUDP: |
|
return net.Network_UDP |
|
default: |
|
return net.Network_Unknown |
|
} |
|
} |
|
|
|
func ToDestination(socksaddr M.Socksaddr, network net.Network) net.Destination { |
|
// IsFqdn() implicitly checks if the domain name is valid |
|
if socksaddr.IsFqdn() { |
|
return net.Destination{ |
|
Network: network, |
|
Address: net.DomainAddress(socksaddr.Fqdn), |
|
Port: net.Port(socksaddr.Port), |
|
} |
|
} |
|
|
|
// IsIP() implicitly checks if the IP address is valid |
|
if socksaddr.IsIP() { |
|
return net.Destination{ |
|
Network: network, |
|
Address: net.IPAddress(socksaddr.Addr.AsSlice()), |
|
Port: net.Port(socksaddr.Port), |
|
} |
|
} |
|
|
|
return net.Destination{} |
|
} |
|
|
|
func ToSocksaddr(destination net.Destination) M.Socksaddr { |
|
var addr M.Socksaddr |
|
switch destination.Address.Family() { |
|
case net.AddressFamilyDomain: |
|
addr.Fqdn = destination.Address.Domain() |
|
default: |
|
addr.Addr = M.AddrFromIP(destination.Address.IP()) |
|
} |
|
addr.Port = uint16(destination.Port) |
|
return addr |
|
}
|
|
|