[Privoxy-commits] [privoxy] 09/30: privoxy-log-parser: Highlight 'Client socket 7 is no longer usable. The server socket has been closed.'

User Git git at git.privoxy.org
Thu Nov 11 04:41:59 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 9ada65bf0c07f7c40c10e53060204f6fec84298a
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Fri Mar 26 20:12:38 2021 +0100

    privoxy-log-parser: Highlight 'Client socket 7 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 04d58656..1c2a5be3 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -1895,6 +1895,11 @@ sub handle_loglevel_connect($) {
         # 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/^Client socket \d is no longer usable/) {
+
+        # Client socket 7 is no longer usable. The server socket has been 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