mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
833 B
38 lines
833 B
// +build json
|
|
|
|
package freedom
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/v2ray/v2ray-core/common/serial"
|
|
"github.com/v2ray/v2ray-core/proxy/internal/config"
|
|
)
|
|
|
|
func (this *Config) UnmarshalJSON(data []byte) error {
|
|
type JsonConfig struct {
|
|
DomainStrategy string `json:"domainStrategy"`
|
|
}
|
|
jsonConfig := new(JsonConfig)
|
|
if err := json.Unmarshal(data, jsonConfig); err != nil {
|
|
return err
|
|
}
|
|
this.DomainStrategy = DomainStrategyAsIs
|
|
domainStrategy := serial.StringT(jsonConfig.DomainStrategy).ToLower()
|
|
if domainStrategy.String() == "useip" {
|
|
this.DomainStrategy = DomainStrategyUseIP
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
config.RegisterOutboundConfig("freedom",
|
|
func(data []byte) (interface{}, error) {
|
|
c := new(Config)
|
|
if err := json.Unmarshal(data, c); err != nil {
|
|
return nil, err
|
|
}
|
|
return c, nil
|
|
})
|
|
}
|