[Privoxy-commits] [privoxy] 10/16: privoxy-log-parser: Highlight: Socket 8 timed out while waiting for client headers
User Git
git at git.privoxy.org
Thu Oct 9 11:51:32 CEST 2025
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit bceabadcde55d0cf18a07673c1a7cbcfeab7939a
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Fri Sep 12 12:25:15 2025 +0200
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.
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list