From: Fabian Keil Date: Sat, 30 May 2020 09:14:02 +0000 (+0200) Subject: privoxy-log-parser.pl: Accept and highlight: Performing the TLS/SSL handshake with... X-Git-Tag: v_3_0_29~337 X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=commitdiff_plain;h=654e888213971b44851ed89a0bc5a302b87fde48 privoxy-log-parser.pl: Accept and highlight: Performing the TLS/SSL handshake with client. Hash of host: bab5296b25e256c7b06b92b17b56bcae --- diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl index 40def9d2..90966a07 100755 --- a/tools/privoxy-log-parser.pl +++ b/tools/privoxy-log-parser.pl @@ -1741,6 +1741,11 @@ sub handle_loglevel_connect($) { $c =~ s@(?<=Flushed )(\d+)@$h{'Number'}$1$h{'Standard'}@; $c =~ s@(?<=expecting )(\d+)@$h{'Number'}$1$h{'Standard'}@; + } elsif ($c =~ m/^Performing the TLS\/SSL handshake with client. Hash of host:/) { + + # Performing the TLS/SSL handshake with client. Hash of host: bab5296b25e256c7b06b92b17b56bcae + $c = highlight_matched_host($c, '(?<=Hash of host: ).+'); + } elsif ($c =~ m/^Looks like we / or $c =~ m/^Unsetting keep-alive flag/ or $c =~ m/^No connections to wait/ or