mirror of
https://github.com/apache/httpd.git
synced 2025-08-01 16:41:19 +00:00
Two sane reasons to wrap up, timeup, or eof. Quiet down both results
from the error log. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@588036 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -152,7 +152,7 @@ static int process_echo_connection(conn_rec *c)
|
|||||||
if (((rv = ap_get_brigade(c->input_filters, bb, AP_MODE_GETLINE,
|
if (((rv = ap_get_brigade(c->input_filters, bb, AP_MODE_GETLINE,
|
||||||
APR_BLOCK_READ, 0)) != APR_SUCCESS)) {
|
APR_BLOCK_READ, 0)) != APR_SUCCESS)) {
|
||||||
apr_brigade_destroy(bb);
|
apr_brigade_destroy(bb);
|
||||||
if (!APR_STATUS_IS_EOF(rv))
|
if (!APR_STATUS_IS_EOF(rv) && ! APR_STATUS_IS_TIMEUP(rv))
|
||||||
ap_log_error(APLOG_MARK, APLOG_INFO, rv, c->base_server,
|
ap_log_error(APLOG_MARK, APLOG_INFO, rv, c->base_server,
|
||||||
"ProtocolEcho: Failure reading from %s",
|
"ProtocolEcho: Failure reading from %s",
|
||||||
c->remote_ip);
|
c->remote_ip);
|
||||||
|
Reference in New Issue
Block a user