[Privoxy-commits] [privoxy] 03/03: privoxy-log-parser: Highlight 'Giving up draining socket 35.'
User Git
git at git.privoxy.org
Thu Jul 17 12:10:53 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 7daede88ae79893ac78245bef07752572d171800
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Tue Jul 8 20:16:55 2025 +0200
privoxy-log-parser: Highlight 'Giving up draining socket 35.'
---
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 3f173a42..2eaa1fff 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -1840,6 +1840,11 @@ sub handle_loglevel_connect($) {
$c =~ s@(?<=Drained )(\d+)@$h{'Number'}$1$h{'Standard'}@;
$c =~ s@(?<=socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
+ } elsif ($c =~ m/^Giving up draining socket \d+/) {
+
+ # Giving up draining socket 35.
+ $c =~ s@(?<=socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
+
} elsif ($c =~ m/^Tainting client socket/ or
$c =~ m/^Failed to shutdown socket/) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list