| 1234567891011121314151617181920212223242526272829303132 |
- // +build json
- package dokodemo
- import (
- "encoding/json"
- "errors"
- v2net "v2ray.com/core/common/net"
- )
- func (this *Config) UnmarshalJSON(data []byte) error {
- type DokodemoConfig struct {
- Host *v2net.IPOrDomain `json:"address"`
- PortValue v2net.Port `json:"port"`
- NetworkList *v2net.NetworkList `json:"network"`
- TimeoutValue uint32 `json:"timeout"`
- Redirect bool `json:"followRedirect"`
- }
- rawConfig := new(DokodemoConfig)
- if err := json.Unmarshal(data, rawConfig); err != nil {
- return errors.New("Dokodemo: Failed to parse config: " + err.Error())
- }
- if rawConfig.Host != nil {
- this.Address = rawConfig.Host
- }
- this.Port = uint32(rawConfig.PortValue)
- this.NetworkList = rawConfig.NetworkList
- this.Timeout = rawConfig.TimeoutValue
- this.FollowRedirect = rawConfig.Redirect
- return nil
- }
|