From: Fabian Keil Date: Sat, 12 Sep 2009 12:36:53 +0000 (+0000) Subject: Accept and ignore: Stopping to watch the client socket. There's already another reque... X-Git-Tag: v_3_0_15~60 X-Git-Url: http://www.privoxy.org/gitweb/?a=commitdiff_plain;h=6b8470716bdfd93626b04493ec2f751b09091bd7;p=privoxy.git Accept and ignore: Stopping to watch the client socket. There's already another request waiting. --- diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl index 3abc97b4..899b16c7 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.47 2009/09/10 15:03:20 fabiankeil Exp $ +# $Id: privoxy-log-parser.pl,v 1.48 2009/09/12 12:36:02 fabiankeil Exp $ # # TODO: # - LOG_LEVEL_CGI, LOG_LEVEL_ERROR, LOG_LEVEL_WRITE content highlighting @@ -1626,7 +1626,8 @@ sub handle_loglevel_connect ($) { $c =~ m/^POST request detected. The connection will not be kept alive./ or $c =~ m/^The server still wants to talk, but the client hung up on us./ or $c =~ m/^The server didn't specify how long the connection will stay open/ or - $c =~ m/^There might be a request body. The connection will not be kept alive/) { + $c =~ m/^There might be a request body. The connection will not be kept alive/ or + $c =~ m/^Stopping to watch the client socket. There's already another request waiting./) { # Looks like we reached the end of the last chunk. We better stop reading. # Looks like we read the end of the last chunk together with the server \ @@ -1641,6 +1642,7 @@ sub handle_loglevel_connect ($) { # The server still wants to talk, but the client hung up on us. # The server didn't specify how long the connection will stay open. Assume it's only a second. # There might be a request body. The connection will not be kept alive. + # Stopping to watch the client socket. There's already another request waiting. } else {