1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-12 08:14:24 -04:00
v2fly/common/net/destination.go

102 lines
2.4 KiB
Go
Raw Normal View History

package net
2016-08-14 11:08:01 -04:00
import (
"net"
"strings"
2016-08-14 11:08:01 -04:00
)
2015-09-21 06:15:25 -04:00
// Destination represents a network destination including address and protocol (tcp / udp).
2016-09-20 05:53:05 -04:00
type Destination struct {
2016-12-21 09:37:16 -05:00
Address Address
Port Port
Network Network
2015-09-20 12:22:29 -04:00
}
2017-02-20 05:25:05 -05:00
// DestinationFromAddr generates a Destination from a net address.
2016-08-14 17:20:23 -04:00
func DestinationFromAddr(addr net.Addr) Destination {
switch addr := addr.(type) {
case *net.TCPAddr:
return TCPDestination(IPAddress(addr.IP), Port(addr.Port))
case *net.UDPAddr:
return UDPDestination(IPAddress(addr.IP), Port(addr.Port))
2018-04-09 14:45:23 -04:00
case *net.UnixAddr:
// TODO: deal with Unix domain socket
return TCPDestination(LocalHostIP, Port(9))
2016-08-14 17:20:23 -04:00
default:
2017-02-08 04:01:22 -05:00
panic("Net: Unknown address type.")
2016-08-14 17:20:23 -04:00
}
2016-08-14 11:08:01 -04:00
}
// ParseDestination converts a destination from its string presentation.
func ParseDestination(dest string) (Destination, error) {
d := Destination{
Address: AnyIP,
Port: Port(0),
}
if strings.HasPrefix(dest, "tcp:") {
d.Network = Network_TCP
dest = dest[4:]
} else if strings.HasPrefix(dest, "udp:") {
d.Network = Network_UDP
dest = dest[4:]
}
hstr, pstr, err := SplitHostPort(dest)
if err != nil {
return d, err
}
if len(hstr) > 0 {
d.Address = ParseAddress(hstr)
}
if len(pstr) > 0 {
port, err := PortFromString(pstr)
if err != nil {
return d, err
}
d.Port = port
}
return d, nil
}
2015-12-16 17:53:38 -05:00
// TCPDestination creates a TCP destination with given address
func TCPDestination(address Address, port Port) Destination {
2016-09-20 05:53:05 -04:00
return Destination{
Network: Network_TCP,
Address: address,
Port: port,
}
2015-09-20 12:22:29 -04:00
}
2015-12-16 17:53:38 -05:00
// UDPDestination creates a UDP destination with given address
func UDPDestination(address Address, port Port) Destination {
2016-09-20 05:53:05 -04:00
return Destination{
Network: Network_UDP,
Address: address,
Port: port,
}
}
2017-11-06 16:42:16 -05:00
// NetAddr returns the network address in this Destination in string form.
2017-08-22 09:15:09 -04:00
func (d Destination) NetAddr() string {
return d.Address.String() + ":" + d.Port.String()
2015-09-20 12:22:29 -04:00
}
2017-11-06 16:42:16 -05:00
// String returns the strings form of this Destination.
2017-08-22 09:15:09 -04:00
func (d Destination) String() string {
return d.Network.URLPrefix() + ":" + d.NetAddr()
2015-12-16 17:53:38 -05:00
}
2017-11-06 16:42:16 -05:00
// IsValid returns true if this Destination is valid.
2017-08-22 09:15:09 -04:00
func (d Destination) IsValid() bool {
return d.Network != Network_Unknown
}
// AsDestination converts current Endpoint into Destination.
2017-08-22 09:15:09 -04:00
func (p *Endpoint) AsDestination() Destination {
2016-09-20 10:05:35 -04:00
return Destination{
2017-08-22 09:15:09 -04:00
Network: p.Network,
Address: p.Address.AsAddress(),
Port: Port(p.Port),
2016-09-20 10:05:35 -04:00
}
}