[Privoxy-commits] [privoxy] 03/17: Fully highlight: Accepted connection from 127.0.0.1 on socket 9 connected through 127.0.1.1:8118.
User Git
git at git.privoxy.org
Wed Dec 10 08:04:28 CET 2025
This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository privoxy.
commit 3352cddff350dc63429325912fbd21fc722c1d29
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Sat Dec 6 09:43:07 2025 +0100
Fully highlight: Accepted connection from 127.0.0.1 on socket 9 connected through 127.0.1.1:8118.
---
tools/privoxy-log-parser.pl | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tools/privoxy-log-parser.pl b/tools/privoxy-log-parser.pl
index 06564c68..a35030ff 100755
--- a/tools/privoxy-log-parser.pl
+++ b/tools/privoxy-log-parser.pl
@@ -1529,6 +1529,8 @@ sub handle_loglevel_connect($) {
} elsif ($c =~ m/^[Aa]ccepted connection from .*/ or
$c =~ m/^OK/) {
+ # Privoxy >=4.1.0:
+ # Accepted connection from 127.0.0.1 on socket 9 connected through 127.0.1.1:8118.
# Privoxy 3.0.20:
# Accepted connection from 10.0.0.1 on socket 5
# Privoxy between 3.0.20 and 3.0.6:
@@ -1537,6 +1539,7 @@ sub handle_loglevel_connect($) {
# OK
$c = highlight_matched_host($c, '(?<=connection from )[^ ]*');
$c = highlight_matched_pattern($c, 'Number', '(?<=socket )\d+');
+ $c = highlight_matched_host($c, '(?<=through )[^ ]*');
} elsif ($c =~ m/^Closing client socket/) {
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list