From 0272f53c685d9fc3585b1764347fca002505c949 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Mon, 22 Feb 2021 14:26:27 +0100 Subject: [PATCH] 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"; -- 2.39.2