mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-12-26 12:05:35 -05:00
Dokodemo proxy
This commit is contained in:
32
common/net/json/network.go
Normal file
32
common/net/json/network.go
Normal file
@@ -0,0 +1,32 @@
|
||||
package json
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"strings"
|
||||
|
||||
v2net "github.com/v2ray/v2ray-core/common/net"
|
||||
)
|
||||
|
||||
type NetworkList []string
|
||||
|
||||
func (this *NetworkList) UnmarshalJSON(data []byte) error {
|
||||
var strList []string
|
||||
err := json.Unmarshal(data, &strList)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
*this = make([]string, len(strList))
|
||||
for idx, str := range strList {
|
||||
(*this)[idx] = strings.ToLower(str)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (this *NetworkList) HasNetwork(network v2net.Network) bool {
|
||||
for _, value := range *this {
|
||||
if value == string(network) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
Reference in New Issue
Block a user