From: Fabian Keil <fk@fabiankeil.de>
Date: Sat, 12 Sep 2009 12:36:02 +0000 (+0000)
Subject: Accept and highlight: The client closed socket 2 while the server socket 4 is still...
X-Git-Tag: v_3_0_15~61
X-Git-Url: http://www.privoxy.org/gitweb/@default-cgi@/faq/%22https:/%22javascript:back()/@default-cgi@edit-actions-add-url-form?a=commitdiff_plain;h=388761adc54f96b9373e0d8f53b079d7fdeef3f5;p=privoxy.git
Accept and highlight: The client closed socket 2 while the server socket 4 is still open.
---
diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl
index 30da9685..3abc97b4 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.46 2009/09/10 15:02:25 fabiankeil Exp $
+# $Id: privoxy-log-parser.pl,v 1.47 2009/09/10 15:03:20 fabiankeil Exp $
#
# TODO:
# - LOG_LEVEL_CGI, LOG_LEVEL_ERROR, LOG_LEVEL_WRITE content highlighting
@@ -1611,6 +1611,12 @@ sub handle_loglevel_connect ($) {
$c =~ s@(?<=bytes to )(\d+)@$h{'Number'}$1$h{'Standard'}@;
$c =~ s@(?<=for the )(\d+)@$h{'Number'}$1$h{'Standard'}@;
+ } elsif ($c =~ m/^The client closed socket /) {
+
+ # The client closed socket 2 while the server socket 4 is still open.
+ $c =~ s@(?<=closed socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
+ $c =~ s@(?<=server socket )(\d+)@$h{'Number'}$1$h{'Standard'}@;
+
} elsif ($c =~ m/^Looks like we rea/ or
$c =~ m/^Unsetting keep-alive flag/ or
$c =~ m/^No connections to wait/ or