]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Clarify the meaning of 'tcpMaxConcurrentConnections' 10207/head
authorRemi Gacogne <remi.gacogne@powerdns.com>
Wed, 24 Mar 2021 14:16:44 +0000 (15:16 +0100)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Fri, 26 Mar 2021 09:53:35 +0000 (10:53 +0100)
pdns/dnsdist.hh

index 9fbca3861b81b8d5f88f7720a7f68f05d347968a..766dbc3635273c6994f10daf90feb082c8b53a0c 100644 (file)
@@ -738,7 +738,7 @@ struct ClientState
   stat_t tcpDownstreamTimeouts{0};
   /* current number of connections to this frontend */
   stat_t tcpCurrentConnections{0};
-  /* maximum number of concurrent connections to this frontend seen */
+  /* maximum number of concurrent connections to this frontend reached */
   stat_t tcpMaxConcurrentConnections{0};
   stat_t tlsNewSessions{0}; // A new TLS session has been negotiated, no resumption
   stat_t tlsResumptions{0}; // A TLS session has been resumed, either via session id or via a TLS ticket
@@ -913,7 +913,7 @@ struct DownstreamState
   stat_t tcpConnectTimeouts{0};
   /* current number of connections to this backend */
   stat_t tcpCurrentConnections{0};
-  /* maximum number of concurrent connections to this backend */
+  /* maximum number of concurrent connections to this backend reached */
   stat_t tcpMaxConcurrentConnections{0};
   stat_t tcpReusedConnections{0};
   stat_t tcpNewConnections{0};