[Privoxy-commits] [privoxy] 07/13: privoxy-log-parser: Highlight 'Prepared to read up to 157 bytes of encrypted request body from the client.'

User Git git at git.privoxy.org
Fri May 6 10:39:35 UTC 2022


This is an automated email from the git hooks/post-receive script.

git pushed a commit to branch master
in repository privoxy.

commit a2b34e4839a2ded6d35f73c1ebe0f56386139bd7
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Thu Apr 21 12:08:00 2022 +0200

    privoxy-log-parser: Highlight 'Prepared to read up to 157 bytes of encrypted request body from the client.'
---
 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 9d5e6de0..257894c1 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -1910,6 +1910,11 @@ sub handle_loglevel_connect($) {
         $c =~ s@(?<=timeout )(\d+)@$h{'Number'}$1$h{'Standard'}@;
         $c = highlight_matched_url($c, "(?<=reached: ).*")
 
+    } elsif ($c =~ m/^Prepared to read up to /) {
+
+        # Prepared to read up to 157 bytes of encrypted request body from the client.
+        $c =~ s@(?<=up to )(\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