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.
v2ray-core/common/net/network.go

44 lines
1.0 KiB

9 years ago
package net
import (
"github.com/v2ray/v2ray-core/common/serial"
)
9 years ago
const (
9 years ago
// TCPNetwork represents the TCP network.
9 years ago
TCPNetwork = Network("tcp")
9 years ago
// UDPNetwork represents the UDP network.
9 years ago
UDPNetwork = Network("udp")
)
9 years ago
// Network represents a communication network on internet.
type Network serial.StringT
9 years ago
func (this Network) AsList() *NetworkList {
list := NetworkList([]Network{this})
return &list
}
9 years ago
// NetworkList is a list of Networks.
type NetworkList []Network
9 years ago
// NewNetworkList construsts a NetWorklist from the given StringListeralList.
func NewNetworkList(networks serial.StringTList) NetworkList {
list := NetworkList(make([]Network, networks.Len()))
for idx, network := range networks {
list[idx] = Network(network.TrimSpace().ToLower())
}
return list
}
9 years ago
// HashNetwork returns true if the given network is in this NetworkList.
func (this *NetworkList) HasNetwork(network Network) bool {
for _, value := range *this {
if string(value) == string(network) {
return true
}
}
return false
9 years ago
}