You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2018/08/22 22:32:17 UTC

svn propchange: r1837130 - svn:log

Author: ylavic
Revision: 1837130
Modified property: svn:log

Modified: svn:log at Wed Aug 22 22:32:17 2018
------------------------------------------------------------------------------
--- svn:log (original)
+++ svn:log Wed Aug 22 22:32:17 2018
@@ -4,9 +4,12 @@ By the time ap_http_header_filter() send
 "CHUNK" filter, we need to garantee that the header went through all the
 filters' stack, and more specifically above ap_http_chunk_filter() which
 assumes that all it receives is content data.
-
 Since rate_limit_filter() may retain the header brigade, make it run after
 ap_http_chunk_filter(), just before AP_FTYPE_CONNECTION filters.
 
+Also, ap_http_header_filter() shouldn't eat the EOS for HEAD/no-body responses.
+For instance mod_ratelimit depends on it since r1835168, but any next request
+filter may as well to flush and/or bail out approprietely.
+
 This fixes the regression introduced in 2.4.34 (r1835168).
 PR 62568.