mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-02 23:47:07 -05:00
67 lines
1.1 KiB
Go
67 lines
1.1 KiB
Go
package net
|
|
|
|
type Destination interface {
|
|
Network() string
|
|
Address() Address
|
|
String() string
|
|
|
|
IsTCP() bool
|
|
IsUDP() bool
|
|
}
|
|
|
|
func NewTCPDestination(address Address) Destination {
|
|
return TCPDestination{address: address}
|
|
}
|
|
|
|
func NewUDPDestination(address Address) Destination {
|
|
return UDPDestination{address: address}
|
|
}
|
|
|
|
type TCPDestination struct {
|
|
address Address
|
|
}
|
|
|
|
func (dest TCPDestination) Network() string {
|
|
return "tcp"
|
|
}
|
|
|
|
func (dest TCPDestination) Address() Address {
|
|
return dest.address
|
|
}
|
|
|
|
func (dest TCPDestination) String() string {
|
|
return "tcp:" + dest.address.String()
|
|
}
|
|
|
|
func (dest TCPDestination) IsTCP() bool {
|
|
return true
|
|
}
|
|
|
|
func (dest TCPDestination) IsUDP() bool {
|
|
return false
|
|
}
|
|
|
|
type UDPDestination struct {
|
|
address Address
|
|
}
|
|
|
|
func (dest UDPDestination) Network() string {
|
|
return "udp"
|
|
}
|
|
|
|
func (dest UDPDestination) Address() Address {
|
|
return dest.address
|
|
}
|
|
|
|
func (dest UDPDestination) String() string {
|
|
return "udp:" + dest.address.String()
|
|
}
|
|
|
|
func (dest UDPDestination) IsTCP() bool {
|
|
return false
|
|
}
|
|
|
|
func (dest UDPDestination) IsUDP() bool {
|
|
return true
|
|
}
|