1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-27 14:26:11 -04:00
v2fly/common/net/network.go

67 lines
1.1 KiB
Go
Raw Normal View History

2015-10-30 10:56:46 -04:00
package net
2016-01-15 08:34:33 -05:00
import (
2016-05-24 16:41:51 -04:00
"strings"
2016-01-15 08:34:33 -05:00
)
2016-09-20 04:44:44 -04: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 10:56:46 -04:00
2016-11-27 15:39:09 -05:00
func (v Network) AsList() *NetworkList {
2016-09-22 06:14:50 -04:00
return &NetworkList{
2016-11-27 15:39:09 -05:00
Network: []Network{v},
2016-09-22 06:14:50 -04:00
}
2016-01-17 10:20:49 -05:00
}
2016-11-27 15:39:09 -05:00
func (v Network) SystemString() string {
switch v {
2017-01-03 08:53:59 -05:00
case Network_TCP:
2016-09-20 04:44:44 -04:00
return "tcp"
case Network_UDP:
2016-09-20 04:44:44 -04:00
return "udp"
default:
return "unknown"
}
2016-06-03 18:38:22 -04:00
}
2016-12-21 09:37:16 -05:00
func (v Network) URLPrefix() string {
2016-11-27 15:39:09 -05:00
switch v {
2017-01-03 08:53:59 -05:00
case Network_TCP:
2016-09-20 05:53:05 -04:00
return "tcp"
case Network_UDP:
return "udp"
default:
return "unknown"
}
}
2017-02-20 05:25:05 -05:00
// HasNetwork returns true if the given network is in v NetworkList.
2016-11-27 15:39:09 -05:00
func (v NetworkList) HasNetwork(network Network) bool {
for _, value := range v.Network {
2016-01-15 08:34:33 -05:00
if string(value) == string(network) {
return true
}
}
return false
2015-10-30 10:56:46 -04:00
}
2016-10-02 17:43:58 -04:00
2016-11-27 15:39:09 -05:00
func (v NetworkList) Get(idx int) Network {
return v.Network[idx]
2016-10-02 17:43:58 -04:00
}
2017-02-20 05:25:05 -05:00
// Size returns the number of networks in this network list.
func (v NetworkList) Size() int {
return len(v.Network)
}