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.
25 lines
603 B
25 lines
603 B
package conf
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"v2ray.com/core/common/loader"
|
|
"v2ray.com/core/proxy/freedom"
|
|
)
|
|
|
|
type FreedomConfig struct {
|
|
DomainStrategy string `json:"domainStrategy"`
|
|
Timeout uint32 `json:"timeout"`
|
|
}
|
|
|
|
func (v *FreedomConfig) Build() (*loader.TypedSettings, error) {
|
|
config := new(freedom.Config)
|
|
config.DomainStrategy = freedom.Config_AS_IS
|
|
domainStrategy := strings.ToLower(v.DomainStrategy)
|
|
if domainStrategy == "useip" || domainStrategy == "use_ip" {
|
|
config.DomainStrategy = freedom.Config_USE_IP
|
|
}
|
|
config.Timeout = v.Timeout
|
|
return loader.NewTypedSettings(config), nil
|
|
}
|