1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-27 22:36:12 -04:00
v2fly/proxy/dokodemo/config_json.go

38 lines
1.0 KiB
Go
Raw Normal View History

// +build json
package dokodemo
import (
"encoding/json"
2016-06-11 16:52:37 -04:00
"errors"
v2net "github.com/v2ray/v2ray-core/common/net"
2016-06-10 16:26:39 -04:00
"github.com/v2ray/v2ray-core/proxy/internal"
)
2016-06-10 16:26:39 -04:00
func (this *Config) UnmarshalJSON(data []byte) error {
type DokodemoConfig struct {
Host *v2net.AddressJson `json:"address"`
PortValue v2net.Port `json:"port"`
NetworkList *v2net.NetworkList `json:"network"`
TimeoutValue int `json:"timeout"`
2016-06-11 19:30:56 -04:00
Redirect bool `json:"followRedirect"`
2016-06-10 16:26:39 -04:00
}
rawConfig := new(DokodemoConfig)
if err := json.Unmarshal(data, rawConfig); err != nil {
2016-06-11 16:52:37 -04:00
return errors.New("Dokodemo: Failed to parse config: " + err.Error())
2016-06-10 16:26:39 -04:00
}
2016-06-12 16:54:33 -04:00
if rawConfig.Host != nil {
this.Address = rawConfig.Host.Address
}
2016-06-10 16:26:39 -04:00
this.Port = rawConfig.PortValue
this.Network = rawConfig.NetworkList
this.Timeout = rawConfig.TimeoutValue
2016-06-11 19:30:56 -04:00
this.FollowRedirect = rawConfig.Redirect
2016-06-10 16:26:39 -04:00
return nil
}
func init() {
2016-06-10 16:26:39 -04:00
internal.RegisterInboundConfig("dokodemo-door", func() interface{} { return new(Config) })
}