From bceabadcde55d0cf18a07673c1a7cbcfeab7939a Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Fri, 12 Sep 2025 12:25:15 +0200 Subject: [PATCH] privoxy-log-parser: Highlight: Socket 8 timed out while waiting for client headers --- 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 2eaa1fff..06564c68 100755 --- a/tools/privoxy-log-parser.pl +++ b/tools/privoxy-log-parser.pl @@ -1937,6 +1937,11 @@ sub handle_loglevel_connect($) { $c =~ s@(?<=timeout )(\d+)@$h{'Number'}$1$h{'Standard'}@; $c = highlight_matched_url($c, "(?<=reached: ).*") + } elsif ($c =~ m/^Socket \d+ timed out/) { + + # Socket 8 timed out while waiting for client headers. + $c =~ s@(?<=Socket )(\d+)@$h{'Number'}$1$h{'Standard'}@; + } elsif ($c =~ m/^Prepared to read up to /) { # Prepared to read up to 157 bytes of encrypted request body from the client. -- 2.50.1