mirror of
https://github.com/apache/httpd.git
synced 2025-08-20 16:09:55 +00:00
* Notice that reading of the request entity body failed due to a timeout
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@451006 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -1387,6 +1387,11 @@ static int cgid_handler(request_rec *r)
|
||||
APR_BLOCK_READ, HUGE_STRING_LEN);
|
||||
|
||||
if (rv != APR_SUCCESS) {
|
||||
if (rv == APR_TIMEUP) {
|
||||
ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
|
||||
"Timeout during reading request entity data");
|
||||
return HTTP_REQUEST_TIME_OUT;
|
||||
}
|
||||
ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r,
|
||||
"Error reading request entity data");
|
||||
return HTTP_INTERNAL_SERVER_ERROR;
|
||||
|
Reference in New Issue
Block a user