From: Fabian Keil <fk@fabiankeil.de>
Date: Sun, 5 Jul 2009 12:02:25 +0000 (+0000)
Subject: Mention the offending socket in the 'Empty server or forwarder response' message.
X-Git-Tag: v_3_0_14~64
X-Git-Url: http://www.privoxy.org/gitweb/@default-cgi@/faq/%22https:/%22javascript:back()/user-manual/diff?a=commitdiff_plain;h=e154953bec0b4942897c73d309d336e8ef3834ef;p=privoxy.git
Mention the offending socket in the 'Empty server or forwarder response' message.
---
diff --git a/jcc.c b/jcc.c
index 58fe9a03..fa3731bb 100644
--- a/jcc.c
+++ b/jcc.c
@@ -1,4 +1,4 @@
-const char jcc_rcs[] = "$Id: jcc.c,v 1.260 2009/07/05 12:00:09 fabiankeil Exp $";
+const char jcc_rcs[] = "$Id: jcc.c,v 1.261 2009/07/05 12:00:53 fabiankeil Exp $";
/*********************************************************************
*
* File : $Source: /cvsroot/ijbswa/current/jcc.c,v $
@@ -2136,7 +2136,8 @@ static void chat(struct client_state *csp)
/* Did we actually get anything? */
if (NULL == csp->headers->first)
{
- log_error(LOG_LEVEL_ERROR, "Empty server or forwarder response.");
+ log_error(LOG_LEVEL_ERROR,
+ "Empty server or forwarder response received on socket %d.", csp->sfd);
log_error(LOG_LEVEL_CLF, "%s - - [%T] \"%s\" 502 0", csp->ip_addr_str, http->cmd);
send_crunch_response(csp, error_response(csp, "no-server-data"));
free_http_request(http);