1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-16 12:45:24 +00:00
v2fly/common/net/network_json.go

19 lines
303 B
Go
Raw Normal View History

2016-01-15 13:34:33 +00:00
// +build json
package net
import (
2016-01-15 14:23:12 +00:00
"encoding/json"
2016-08-20 18:55:45 +00:00
"v2ray.com/core/common/collect"
2016-01-15 13:34:33 +00:00
)
func (this *NetworkList) UnmarshalJSON(data []byte) error {
2016-05-24 20:41:51 +00:00
var strlist collect.StringList
2016-01-15 14:23:12 +00:00
if err := json.Unmarshal(data, &strlist); err != nil {
2016-01-15 13:34:33 +00:00
return err
}
*this = NewNetworkList(strlist)
return nil
}