| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 | package netimport (	"net"	"strings")// Destination represents a network destination including address and protocol (tcp / udp).type Destination struct {	Address Address	Port    Port	Network Network}// DestinationFromAddr generates a Destination from a net address.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))	case *net.UnixAddr:		// TODO: deal with Unix domain socket		return TCPDestination(LocalHostIP, Port(9))	default:		panic("Net: Unknown address type.")	}}// 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}// TCPDestination creates a TCP destination with given addressfunc TCPDestination(address Address, port Port) Destination {	return Destination{		Network: Network_TCP,		Address: address,		Port:    port,	}}// UDPDestination creates a UDP destination with given addressfunc UDPDestination(address Address, port Port) Destination {	return Destination{		Network: Network_UDP,		Address: address,		Port:    port,	}}// NetAddr returns the network address in this Destination in string form.func (d Destination) NetAddr() string {	return d.Address.String() + ":" + d.Port.String()}// String returns the strings form of this Destination.func (d Destination) String() string {	return d.Network.URLPrefix() + ":" + d.NetAddr()}// IsValid returns true if this Destination is valid.func (d Destination) IsValid() bool {	return d.Network != Network_Unknown}// AsDestination converts current Endpoint into Destination.func (p *Endpoint) AsDestination() Destination {	return Destination{		Network: p.Network,		Address: p.Address.AsAddress(),		Port:    Port(p.Port),	}}
 |