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:
William A. Rowe Jr
2007-10-24 21:25:23 +00:00
parent 1078dd2107
commit dabb786beb

View File

@ -152,7 +152,7 @@ static int process_echo_connection(conn_rec *c)
if (((rv = ap_get_brigade(c->input_filters, bb, AP_MODE_GETLINE,
APR_BLOCK_READ, 0)) != APR_SUCCESS)) {
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,
"ProtocolEcho: Failure reading from %s",
c->remote_ip);