Accept and ignore: Stopping to watch the client socket. There's already another reque...
authorFabian Keil <fk@fabiankeil.de>
Sat, 12 Sep 2009 12:36:53 +0000 (12:36 +0000)
committerFabian Keil <fk@fabiankeil.de>
Sat, 12 Sep 2009 12:36:53 +0000 (12:36 +0000)
tools/privoxy-log-parser.pl

index 3abc97b..899b16c 100755 (executable)
@@ -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 {