From a8d2e49fbf74d5a872cb6ab422248d20883da0e5 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Sun, 9 Jan 2011 12:09:21 +0000 Subject: [PATCH] Accept and highlight: Client request arrived in time on socket 21. --- tools/privoxy-log-parser.pl | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl index e987973d..a61b037b 100755 --- a/tools/privoxy-log-parser.pl +++ b/tools/privoxy-log-parser.pl @@ -8,7 +8,7 @@ # # http://www.fabiankeil.de/sourcecode/privoxy-log-parser/ # -# $Id: privoxy-log-parser.pl,v 1.107 2010/12/11 15:40:29 fabiankeil Exp $ +# $Id: privoxy-log-parser.pl,v 1.108 2010/12/11 15:44:55 fabiankeil Exp $ # # TODO: # - LOG_LEVEL_CGI, LOG_LEVEL_ERROR, LOG_LEVEL_WRITE content highlighting @@ -1596,11 +1596,14 @@ sub handle_loglevel_connect ($) { } elsif ($c =~ m/^Waiting for the next client request/ or $c =~ m/^The connection on server socket/ or - $c =~ m/^Client request arrived in time or the client closed the connection/) { + $c =~ m/^Client request arrived in time /) { # Waiting for the next client request on socket 3. Keeping the server \ # socket 12 to a.fsdn.com open. # The connection on server socket 6 to upload.wikimedia.org isn't reusable. Closing. + # Used by Privoxy 3.0.18 and later: + # Client request arrived in time on socket 21. + # Used by earlier version: # Client request arrived in time or the client closed the connection on socket 12. $c =~ s@(?<=on socket )(\d+)@$h{'Number'}$1$h{'Standard'}@; -- 2.39.2