1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-04 04:55:23 +00:00
v2fly/common/net/network.go

67 lines
1.1 KiB
Go
Raw Normal View History

2015-10-30 14:56:46 +00:00
package net
2016-01-15 13:34:33 +00:00
import (
2016-05-24 20:41:51 +00:00
"strings"
2016-01-15 13:34:33 +00:00
)
2016-09-20 08:44:44 +00:00
func ParseNetwork(nwStr string) Network {
if network, found := Network_value[nwStr]; found {
return Network(network)
}
switch strings.ToLower(nwStr) {
case "tcp":
return Network_TCP
case "udp":
return Network_UDP
default:
return Network_Unknown
}
}
2015-10-30 14:56:46 +00:00
2017-08-22 13:15:09 +00:00
func (n Network) AsList() *NetworkList {
2016-09-22 10:14:50 +00:00
return &NetworkList{
2017-08-22 13:15:09 +00:00
Network: []Network{n},
2016-09-22 10:14:50 +00:00
}
2016-01-17 15:20:49 +00:00
}
2017-08-22 13:15:09 +00:00
func (n Network) SystemString() string {
switch n {
2017-01-03 13:53:59 +00:00
case Network_TCP:
2016-09-20 08:44:44 +00:00
return "tcp"
case Network_UDP:
2016-09-20 08:44:44 +00:00
return "udp"
default:
return "unknown"
}
2016-06-03 22:38:22 +00:00
}
2017-08-22 13:15:09 +00:00
func (n Network) URLPrefix() string {
switch n {
2017-01-03 13:53:59 +00:00
case Network_TCP:
2016-09-20 09:53:05 +00:00
return "tcp"
case Network_UDP:
return "udp"
default:
return "unknown"
}
}
2017-02-20 10:25:05 +00:00
// HasNetwork returns true if the given network is in v NetworkList.
2017-08-22 13:15:09 +00:00
func (l NetworkList) HasNetwork(network Network) bool {
for _, value := range l.Network {
2016-01-15 13:34:33 +00:00
if string(value) == string(network) {
return true
}
}
return false
2015-10-30 14:56:46 +00:00
}
2016-10-02 21:43:58 +00:00
2017-08-22 13:15:09 +00:00
func (l NetworkList) Get(idx int) Network {
return l.Network[idx]
2016-10-02 21:43:58 +00:00
}
2017-02-20 10:25:05 +00:00
// Size returns the number of networks in this network list.
2017-08-22 13:15:09 +00:00
func (l NetworkList) Size() int {
return len(l.Network)
}