[Privoxy-commits] [privoxy] 04/11: privoxy-log-parser: Highlight 'Failed to accept() incoming connection: Software caused connection abort'
User Git
git at git.privoxy.org
Thu Nov 16 14:27:13 CET 2023
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit 60ebcd7e58c8b9cae9ccf8ae522327b7591fdd78
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Mon Oct 16 21:10:31 2023 +0200
privoxy-log-parser: Highlight 'Failed to accept() incoming connection: Software caused connection abort'
---
tools/privoxy-log-parser.pl | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl
index c58726c2..b76899dd 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -1574,6 +1574,11 @@ sub handle_loglevel_connect($) {
$c =~ s@(?<=accept failed: )(.*)@$h{'Error'}$1$h{'Standard'}@;
+ } elsif ($c =~ m/^Failed to accept\(\) incoming connection:/) {
+
+ # Failed to accept() incoming connection: Software caused connection abort
+ $c =~ s@(?<=connection: )(.*)@$h{'Error'}$1$h{'Standard'}@;
+
} elsif ($c =~ m/^Overriding forwarding settings/) {
# Overriding forwarding settings based on 'forward 10.0.0.1:8123'
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list