From dcf1075abb4c45eea6b7a6b924c4a28ba404b2a2 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sun, 3 Jul 2022 11:31:50 +0200 Subject: [PATCH] privoxy-log-parser: Highlight 'Client socket 21 is no longer usable. The server socket has been closed.' --- tools/privoxy-log-parser.pl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl index f27188c4..5614a5e5 100755 --- a/tools/privoxy-log-parser.pl +++ b/tools/privoxy-log-parser.pl @@ -1939,6 +1939,11 @@ sub handle_loglevel_connect($) { $c =~ s@(?<=after discarding )(\d+)@$h{'Number'}$1$h{'Standard'}@; $c =~ s@(?<=after flushing )(\d+)@$h{'Number'}$1$h{'Standard'}@; + } elsif ($c =~ m/^Client socket \d+ is no longer usable/) { + + # Client socket 21 is no longer usable. The server socket has been closed. + $c =~ s@(?<=Client socket )(\d+)@$h{'Number'}$1$h{'Standard'}@; + } elsif ($c =~ m/^Looks like we / or $c =~ m/^Unsetting keep-alive flag/ or $c =~ m/^No connections to wait/ or -- 2.39.2