1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/common/net/network.go

23 lines
387 B
Go
Raw Normal View History

2015-10-30 15:56:46 +01:00
package net
2017-08-22 15:15:09 +02:00
func (n Network) SystemString() string {
switch n {
2017-01-03 14:53:59 +01:00
case Network_TCP:
2016-09-20 10:44:44 +02:00
return "tcp"
case Network_UDP:
2016-09-20 10:44:44 +02:00
return "udp"
default:
return "unknown"
}
2016-06-04 00:38:22 +02:00
}
2018-11-20 17:05:32 +01:00
// HasNetwork returns true if the network list has a certain network.
2018-04-03 17:51:01 +02:00
func HasNetwork(list []Network, network Network) bool {
for _, value := range list {
2018-11-20 16:58:26 +01:00
if value == network {
2018-04-03 17:51:01 +02:00
return true
}
}
return false
}