From: Chuck Murcko Date: Fri, 18 Jan 2002 20:36:23 +0000 (+0000) Subject: what u just got (with the mod_proxy HTTP 1.1 change) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f45c2132cab84462cd09b9d28b61095eeade4d48;p=thirdparty%2Fapache%2Fhttpd.git what u just got (with the mod_proxy HTTP 1.1 change) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@92912 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/CHANGES b/src/CHANGES index 828a8ffe680..bf24ebee80b 100644 --- a/src/CHANGES +++ b/src/CHANGES @@ -1,4 +1,39 @@ Changes with Apache 1.3.23 + *) mod_proxy changes: + + *) Bug fix for ap_proxy_cache_conditional(), unititialized wetag + [Zvi Har'El ] + + *) Add persistent connection handling + The patch changes mod_proxy to write the reply-headers using + ap_send_http_header() instead of directly using ap_bvputs(). This not + only simplifies mod_proxy, in my opinion at least, but enables it to + make use of the features of Apache's normal header and persistent + connection machinery. + [Christian von Roques ] + + *) Graham Leggett's original 1.3.12 patch, updated for 1.3.19+ + Original comments: + + HTTP/1.1 support for mod_proxy: + - support for Cache-Control + - conditional support If-Match, If-None-Match, + If-Unmodified-Since, Etag + - support for content negotiation using Vary + - storing of request headers (for Vary support) in cache file + - storing of updated response headers (with 304 Not Modified) in + cache file + - support for 64 bit dates and content-lengths in cache file + Fixes: + - ProxyPassReverse applied to Content-Location + - entity headers no longer stripped from response after cache + revalidation + - annotation of mod_proxy cache code + [Graham Leggett ] + + changes to preserve binary compatibility with httpd core, clean up + [Chuck Murcko ] + *) HPUX 11.*: Do not kill the child process when accept() returns ENOBUFS on HPUX 11.*. [madhusudan_mathihalli@hp.com]