mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-05 22:27:37 +03:00
Split ConfigLoad()
This commit is contained in:
parent
bbfcb0c5bd
commit
16fc6b74e9
1 changed files with 17 additions and 12 deletions
|
@ -210,6 +210,22 @@ func ConfigLoad(proxy *Proxy, svcFlag *string, config_file string) error {
|
|||
|
||||
proxy.forwardFile = config.ForwardFile
|
||||
|
||||
if err := config.loadSources(proxy); err != nil {
|
||||
return err
|
||||
}
|
||||
if len(proxy.registeredServers) == 0 {
|
||||
return errors.New("No servers configured")
|
||||
}
|
||||
if *list {
|
||||
for _, registeredServer := range proxy.registeredServers {
|
||||
fmt.Println(registeredServer.name)
|
||||
}
|
||||
os.Exit(0)
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (config *Config) loadSources(proxy *Proxy) error {
|
||||
requiredProps := ServerInformalProperties(0)
|
||||
if config.SourceRequireDNSSEC {
|
||||
requiredProps |= ServerInformalPropertyDNSSEC
|
||||
|
@ -220,7 +236,6 @@ func ConfigLoad(proxy *Proxy, svcFlag *string, config_file string) error {
|
|||
if config.SourceRequireNoFilter {
|
||||
requiredProps |= ServerInformalPropertyNoFilter
|
||||
}
|
||||
|
||||
for cfgSourceName, cfgSource := range config.SourcesConfig {
|
||||
if cfgSource.URL == "" {
|
||||
return fmt.Errorf("Missing URL for source [%s]", cfgSourceName)
|
||||
|
@ -288,17 +303,7 @@ func ConfigLoad(proxy *Proxy, svcFlag *string, config_file string) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
proxy.registeredServers = append(proxy.registeredServers,
|
||||
RegisteredServer{name: serverName, stamp: stamp})
|
||||
}
|
||||
if len(proxy.registeredServers) == 0 {
|
||||
return errors.New("No servers configured")
|
||||
}
|
||||
if *list {
|
||||
for _, registeredServer := range proxy.registeredServers {
|
||||
fmt.Println(registeredServer.name)
|
||||
}
|
||||
os.Exit(0)
|
||||
proxy.registeredServers = append(proxy.registeredServers, RegisteredServer{name: serverName, stamp: stamp})
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue