From 2f43ed43a22183a05d0e2c9e8925a5f079b9838e Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Wed, 24 Mar 2021 15:16:44 +0100 Subject: [PATCH] dnsdist: Clarify the meaning of 'tcpMaxConcurrentConnections' --- pdns/dnsdist.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pdns/dnsdist.hh b/pdns/dnsdist.hh index 9fbca3861b..766dbc3635 100644 --- a/pdns/dnsdist.hh +++ b/pdns/dnsdist.hh @@ -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}; -- 2.47.2