1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/proxy/freedom/config_json.go

34 lines
807 B
Go
Raw Normal View History

// +build json
package freedom
import (
2016-05-22 22:30:21 +02:00
"encoding/json"
2016-06-11 22:52:37 +02:00
"errors"
2016-05-24 22:41:51 +02:00
"strings"
2016-05-22 22:30:21 +02:00
2016-08-20 20:55:45 +02:00
"v2ray.com/core/proxy/registry"
)
2016-05-22 22:30:21 +02:00
func (this *Config) UnmarshalJSON(data []byte) error {
type JsonConfig struct {
DomainStrategy string `json:"domainStrategy"`
2016-06-02 23:18:44 +02:00
Timeout uint32 `json:"timeout"`
2016-05-22 22:30:21 +02:00
}
jsonConfig := new(JsonConfig)
if err := json.Unmarshal(data, jsonConfig); err != nil {
2016-06-11 22:52:37 +02:00
return errors.New("Freedom: Failed to parse config: " + err.Error())
2016-05-22 22:30:21 +02:00
}
2016-08-25 21:55:49 +02:00
this.DomainStrategy = Config_AS_IS
2016-05-24 22:41:51 +02:00
domainStrategy := strings.ToLower(jsonConfig.DomainStrategy)
2016-08-25 21:55:49 +02:00
if domainStrategy == "useip" || domainStrategy == "use_ip" {
this.DomainStrategy = Config_USE_IP
2016-05-22 22:30:21 +02:00
}
2016-06-02 23:18:44 +02:00
this.Timeout = jsonConfig.Timeout
2016-05-22 22:30:21 +02:00
return nil
}
func init() {
registry.RegisterOutboundConfig("freedom", func() interface{} { return new(Config) })
}