-*- coding: utf-8 -*-
Changes with Apache 2.2.7
+ *) mod_proxy_http: add Via header correctly (if enabled) to
+ response, even where other Via headers exist.
+ PR 19439 [Nick Kew]
+
*) http_core: OPTIONS * no longer maps to local storage or URI
space. PR 43519 [Jim Jagielski]
PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * mod_proxy_http: add Via header correctly (if enabled) to
- response, even where other Via headers exist.
- PR 19439
- http://svn.apache.org/viewvc?view=rev&revision=580060
- +1: niq, rpluem, jim
-
* mod_proxy_http: Correctly parse all Connection headers in proxy.
PR 43509
trunk: http://svn.apache.org/viewvc?view=rev&revision=580457
if (server_name == r->hostname)
server_name = r->server->server_hostname;
/* create a "Via:" response header entry and merge it */
- apr_table_mergen(r->headers_out, "Via",
- (conf->viaopt == via_full)
+ apr_table_addn(r->headers_out, "Via",
+ (conf->viaopt == via_full)
? apr_psprintf(p, "%d.%d %s%s (%s)",
HTTP_VERSION_MAJOR(r->proto_num),
HTTP_VERSION_MINOR(r->proto_num),