]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
increase the default value for the maximum number of TCP connections to 20 4071/head
authorKees Monshouwer <mind04@monshouwer.org>
Mon, 4 Jul 2016 17:50:34 +0000 (19:50 +0200)
committermind04 <mind04@monshouwer.org>
Mon, 4 Jul 2016 17:50:34 +0000 (19:50 +0200)
docs/markdown/authoritative/settings.md
pdns/common_startup.cc

index c20a890c10993c339f4c692270f30e1fa52b0e77..269d4747b182e9517cb19e2551a6a3563b7bcc7c 100644 (file)
@@ -513,7 +513,7 @@ Maximum number of signatures cache entries
 
 ## `max-tcp-connections`
 * Integer
-* Default: 10
+* Default: 20
 
 Allow this many incoming TCP DNS connections simultaneously.
 
index 3ee2b5a7da41878641bac33178224bae56cd5fa4..c783d9a7479f3b1c927608ed53303dd8cb1e7a7c 100644 (file)
@@ -160,7 +160,7 @@ void declareArguments()
   ::arg().set("slave-renotify", "If we should send out notifications for slaved updates")="no";
 
   ::arg().set("default-ttl","Seconds a result is valid if not set otherwise")="3600";
-  ::arg().set("max-tcp-connections","Maximum number of TCP connections")="10";
+  ::arg().set("max-tcp-connections","Maximum number of TCP connections")="20";
   ::arg().setSwitch("no-shuffle","Set this to prevent random shuffling of answers - for regression testing")="off";
 
   ::arg().set("setuid","If set, change user id to this uid for more security")="";