[Privoxy-commits] [privoxy] 07/13: privoxy-log-parser: Clarify the --statistics ouput

User Git git at git.privoxy.org
Wed Feb 24 08:55:04 UTC 2021


This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository privoxy.

commit 0272f53c685d9fc3585b1764347fca002505c949
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Mon Feb 22 14:26:27 2021 +0100

    privoxy-log-parser: Clarify the --statistics ouput
    
    The shown "Reused connections" are server connections so
    name them appropriately.
---
 tools/privoxy-log-parser.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl
index 0ce7ffb0..193b8a65 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -2389,7 +2389,7 @@ sub print_stats() {
         get_percentage($requests_total, $stats{'server-keep-alive'}) . ")\n";
     print "New outgoing connections: " . $new_connections . " (" .
         get_percentage($requests_total, $new_connections) . ")\n";
-    print "Reused connections: " . $stats{'reused-connections'} . " (" .
+    print "Reused server connections: " . $stats{'reused-connections'} . " (" .
         get_percentage($requests_total, $stats{'reused-connections'}) .
         "; server offers accepted: " .
         get_percentage($stats{'server-keep-alive'}, $stats{'reused-connections'}) . ")\n";

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Privoxy-commits mailing list