https://bz.apache.org/bugzilla/show_bug.cgi?id=59987
Bug ID: 59987
Summary: Add log message when apr_socket_send fails
Product: Apache httpd-2
Version: 2.5-HEAD
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P2
Component: All
Assignee: [email protected]
Reporter: [email protected]
Created attachment 34133
--> https://bz.apache.org/bugzilla/attachment.cgi?id=34133&action=edit
Add log message when apr_socket_send fails
Function apr_socket_send may fail. The majority of calls have checked the
return value and printed log message like the following code snippet, while the
others have not. Those unchecked ones probably need logs too (see attachment).
/* httpd-2.4.10/modules/proxy/mod_proxy_scgi.c:234:19 */
if ((rv = apr_socket_send(conn->sock, buf, &written)) != APR_SUCCESS) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(00858)
"sending data to %s:%u failed",
conn->hostname, conn->port);
}
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]