summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2020-06-19 14:52:08 +0000
committerYann Ylavic <ylavic@apache.org>2020-06-19 14:52:08 +0000
commitd17005b82d7821e7e023728b911750d0bdf393f8 (patch)
treeb70c51dd8557f199e8afdb2c63bb12ddbfe780c5 /CHANGES
parent943a278020458aa9ee863a722fb042861bc889ba (diff)
downloadhttpd-d17005b82d7821e7e023728b911750d0bdf393f8.tar.gz
mod_proxy_http: always stream the request body by default.
Simplify streaming by using Content-Length if the length is available, or chunked Transfer-Encoding otherwise. Spooling to memory/file will only be used for HTTP/1.0 requests or if proxy-sendcl is set. This removes the handling of proxy-sendchunked and proxy-sendchunks. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1878991 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES b/CHANGES
index 55c86bbd52..d7fc4c68e8 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,6 +1,12 @@
-*- coding: utf-8 -*-
Changes with Apache 2.5.1
+ *) mod_proxy_http: remove proxy-sendchunked and proxy-sendchunks
+ handling, the defaut behaviour being now to stream the request body
+ using Content-Length when the length is known and fall back to chunked
+ Transfer-Encoding otherwise (unless proxy-sendcl is set thus requiring
+ that the request body be spooled to memory or filesystem). [Yann Ylavic]
+
*) mod_ldap: Avoid performance overhead of APR-util rebind cache for
OpenLDAP 2.2+. PR 64414. [Joe Orton]