We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5ea893 commit 4236aeeCopy full SHA for 4236aee
dnscrypt-proxy/config.go
@@ -380,7 +380,10 @@ func ConfigLoad(proxy *Proxy, flags *ConfigFlags) error {
380
// Configure logging
381
configureLogging(proxy, flags, &config)
382
383
- // Configure XTransport
+ // Configure server parameters
384
+ configureServerParams(proxy, &config)
385
+
386
+ // Configure XTransport (needs proxy.mainProto to be set)
387
if err := configureXTransport(proxy, &config); err != nil {
388
return err
389
}
@@ -390,9 +393,6 @@ func ConfigLoad(proxy *Proxy, flags *ConfigFlags) error {
390
393
391
394
392
395
- // Configure server parameters
- configureServerParams(proxy, &config)
-
396
// Configure load balancing
397
configureLoadBalancing(proxy, &config)
398
0 commit comments