[Privoxy-commits] [privoxy] 02/17: Also log the listening address and port the request came in on
User Git
git at git.privoxy.org
Wed Dec 10 08:04:27 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 9144b82b99772a270db7cd9499f0414998092d5e
Author: Fabian Keil <fk at fabiankeil.de>
AuthorDate: Sat Dec 6 09:33:22 2025 +0100
Also log the listening address and port the request came in on
---
jcc.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/jcc.c b/jcc.c
index a3ebcf4f..3c6ef400 100644
--- a/jcc.c
+++ b/jcc.c
@@ -5037,8 +5037,9 @@ static void serve(struct client_state *csp)
#endif /* def FEATURE_CONNECTION_SHARING */
int continue_chatting = 0;
- log_error(LOG_LEVEL_CONNECT, "Accepted connection from %s on socket %d",
- csp->ip_addr_str, csp->cfd);
+ log_error(LOG_LEVEL_CONNECT,
+ "Accepted connection from %s on socket %d connected through %s.",
+ csp->ip_addr_str, csp->cfd, csp->listen_addr_str);
do
{
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Privoxy-commits
mailing list