2015-09-20 14:03:12 +00:00
|
|
|
package net
|
|
|
|
|
2016-08-14 15:08:01 +00:00
|
|
|
import (
|
|
|
|
"net"
|
|
|
|
)
|
|
|
|
|
2015-09-21 10:15:25 +00:00
|
|
|
// Destination represents a network destination including address and protocol (tcp / udp).
|
2016-09-20 09:53:05 +00:00
|
|
|
type Destination struct {
|
|
|
|
Network Network
|
|
|
|
Port Port
|
2016-12-21 14:37:16 +00:00
|
|
|
Address Address
|
2015-09-20 16:22:29 +00:00
|
|
|
}
|
|
|
|
|
2017-02-20 10:25:05 +00:00
|
|
|
// DestinationFromAddr generates a Destination from a net address.
|
2016-08-14 21:20:23 +00: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))
|
|
|
|
default:
|
2017-02-08 09:01:22 +00:00
|
|
|
panic("Net: Unknown address type.")
|
2016-08-14 21:20:23 +00:00
|
|
|
}
|
2016-08-14 15:08:01 +00:00
|
|
|
}
|
|
|
|
|
2015-12-16 22:53:38 +00:00
|
|
|
// TCPDestination creates a TCP destination with given address
|
|
|
|
func TCPDestination(address Address, port Port) Destination {
|
2016-09-20 09:53:05 +00:00
|
|
|
return Destination{
|
|
|
|
Network: Network_TCP,
|
|
|
|
Address: address,
|
|
|
|
Port: port,
|
|
|
|
}
|
2015-09-20 16:22:29 +00:00
|
|
|
}
|
|
|
|
|
2015-12-16 22:53:38 +00:00
|
|
|
// UDPDestination creates a UDP destination with given address
|
|
|
|
func UDPDestination(address Address, port Port) Destination {
|
2016-09-20 09:53:05 +00:00
|
|
|
return Destination{
|
|
|
|
Network: Network_UDP,
|
|
|
|
Address: address,
|
|
|
|
Port: port,
|
2016-01-20 16:31:43 +00:00
|
|
|
}
|
2015-09-20 14:03:12 +00:00
|
|
|
}
|
|
|
|
|
2016-11-27 20:39:09 +00:00
|
|
|
func (v Destination) NetAddr() string {
|
|
|
|
return v.Address.String() + ":" + v.Port.String()
|
2015-09-20 16:22:29 +00:00
|
|
|
}
|
|
|
|
|
2016-11-27 20:39:09 +00:00
|
|
|
func (v Destination) String() string {
|
2016-12-21 14:37:16 +00:00
|
|
|
return v.Network.URLPrefix() + ":" + v.NetAddr()
|
2015-12-16 22:53:38 +00:00
|
|
|
}
|
|
|
|
|
2017-01-26 19:46:44 +00:00
|
|
|
func (v Destination) IsValid() bool {
|
|
|
|
return v.Network != Network_Unknown
|
|
|
|
}
|
|
|
|
|
2017-02-20 10:25:05 +00:00
|
|
|
// AsDestination converts current Enpoint into Destination.
|
2016-11-27 20:39:09 +00:00
|
|
|
func (v *Endpoint) AsDestination() Destination {
|
2016-09-20 14:05:35 +00:00
|
|
|
return Destination{
|
2016-11-27 20:39:09 +00:00
|
|
|
Network: v.Network,
|
|
|
|
Address: v.Address.AsAddress(),
|
|
|
|
Port: Port(v.Port),
|
2016-09-20 14:05:35 +00:00
|
|
|
}
|
|
|
|
}
|