summaryrefslogtreecommitdiff
path: root/modules/http
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2020-11-19 12:27:20 +0000
committerYann Ylavic <ylavic@apache.org>2020-11-19 12:27:20 +0000
commit984ac8d2226993fef7cbfaecdb050f176a3cb315 (patch)
tree3bcdcf51295ee0924f97d8d5d6687084d672d627 /modules/http
parent2865f2584b4d5bc1c0ba7429768ed6f857417968 (diff)
downloadhttpd-984ac8d2226993fef7cbfaecdb050f176a3cb315.tar.gz
Follow up to r1883639: debug log for rfc7231#section-5.1.1
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1883641 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http')
-rw-r--r--modules/http/http_filters.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c
index ac7187f0c5..482a3f97de 100644
--- a/modules/http/http_filters.c
+++ b/modules/http/http_filters.c
@@ -441,6 +441,10 @@ apr_status_t ap_http_filter(ap_filter_t *f, apr_bucket_brigade *b,
* has already received some or all of the message body for
* the corresponding request [...]
*/
+ ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, f->r, APLOGNO(10260)
+ "request body already/partly received while "
+ "100-continue is expected, omit sending interim "
+ "response");
f->r->expecting_100 = 0;
}
}