Hunter0x7c7
2022-08-11 b8230139fb40edea387617b6accd8371e37eda58
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package net
 
import (
    "strings"
)
 
func (n Network) SystemString() string {
    switch n {
    case Network_TCP:
        return "tcp"
    case Network_UDP:
        return "udp"
    case Network_UNIX:
        return "unix"
    default:
        return "unknown"
    }
}
 
// HasNetwork returns true if the network list has a certain network.
func HasNetwork(list []Network, network Network) bool {
    for _, value := range list {
        if value == network {
            return true
        }
    }
    return false
}
 
func ParseNetwork(net string) Network {
    switch strings.ToLower(net) {
    case "tcp":
        return Network_TCP
    case "udp":
        return Network_UDP
    case "unix":
        return Network_UNIX
    default:
        return Network_Unknown
    }
}
 
func ParseNetworks(netlist string) []Network {
    strlist := strings.Split(netlist, ",")
    nl := make([]Network, len(strlist))
    for idx, network := range strlist {
        nl[idx] = ParseNetwork(network)
    }
 
    return nl
}