X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=tools%2Fprivoxy-log-parser.pl;h=77296267680a35b0a256345590a11777de06374d;hp=10a5b3e86bf4d396fe2253fe3bc9c7710f33daa8;hb=e34250c7b157d8fc601afc6ca7692175c0fc89ca;hpb=6c69ba7f80061a58ee1769bc199480fd62bc5c2c diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl index 10a5b3e8..77296267 100755 --- a/tools/privoxy-log-parser.pl +++ b/tools/privoxy-log-parser.pl @@ -1778,6 +1778,11 @@ sub handle_loglevel_connect($) { $c =~ s@(?<=client socket )(\d+)@$h{'Number'}$1$h{'Standard'}@; $c =~ s@(?<=Requests so far: )(\d+)@$h{'Number'}$1$h{'Standard'}@; + } elsif ($c =~ m/^Dropping the client connection on socket/) { + + # Dropping the client connection on socket 71. The server connection has not been established yet. + $c =~ s@(?<=on socket )(\d+)@$h{'Number'}$1$h{'Standard'}@; + } elsif ($c =~ m/^Looks like we / or $c =~ m/^Unsetting keep-alive flag/ or $c =~ m/^No connections to wait/ or