[Privoxy-commits] [privoxy] 03/14: privoxy-log-parser: Highlight 'The peer notified us that the connection on socket 11 is going to be closed'
User Git
git at git.privoxy.org
Sun Mar 21 07:34:55 UTC 2021
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit cfee8f25226bfd41a5566766cdf4669d3cf18c51
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Mon Mar 15 22:05:23 2021 +0100
privoxy-log-parser: Highlight 'The peer notified us that the connection on socket 11 is going to be 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 193b8a65..78e7aa53 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -1890,6 +1890,11 @@ sub handle_loglevel_connect($) {
# Complete client request followed by 59 bytes of pipelined data received.
$c =~ s@(?<=followed by )(\d+)@$h{'Number'}$1$h{'Standard'}@;
+ } elsif ($c =~ m/^The peer notified us that the connection on socket/) {
+
+ # The peer notified us that the connection on socket 11 is going to be closed
+ $c =~ s@(?<=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
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list