Loading CHANGES +3 −0 Original line number Diff line number Diff line -*- coding: utf-8 -*- Changes with Apache 2.0.60 *) proxy_http.c: Overlay existing cookies with proxied ones, ala httpd-2.2. [Jim Jagielski] *) mod_proxy: ProxyTimeout (and others) ignored due to not merging the *_set params. PR 11540. [Jim Jagielski] Loading STATUS +0 −5 Original line number Diff line number Diff line Loading @@ -136,11 +136,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK: Trunk: http://svn.apache.org/viewvc?view=rev&revision=442758 +1: niq, wrowe, rpluem * proxy_http.c: Overlay existing cookies with proxied ones, ala httpd-2.2 and trunk. Patch: http://people.apache.org/~jim/patches/cookie-overlay.patch +1: jim, wrowe, rpluem PATCHES PROPOSED TO BACKPORT FROM TRUNK: [ please place SVN revisions from trunk here, so it is easy to identify exactly what the proposed changes are! Add all new Loading modules/proxy/proxy_http.c +24 −0 Original line number Diff line number Diff line Loading @@ -1282,6 +1282,12 @@ skip_body: return APR_SUCCESS; } static int addit_dammit(void *v, const char *key, const char *val) { apr_table_addn(v, key, val); return 1; } static apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r, proxy_http_conn_t *p_conn, Loading @@ -1296,6 +1302,7 @@ apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r, char keepchar; request_rec *rp; apr_bucket *e; apr_table_t *save_table; int len, backasswards; int received_continue = 1; /* flag to indicate if we should * loop over response parsing logic Loading Loading @@ -1372,6 +1379,11 @@ apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r, /* N.B. for HTTP/1.0 clients, we have to fold line-wrapped headers*/ /* Also, take care with headers with multiple occurences. */ /* First, tuck away all already existing cookies */ save_table = apr_table_make(r->pool, 2); apr_table_do(addit_dammit, save_table, r->headers_out, "Set-Cookie", NULL); r->headers_out = ap_proxy_read_headers(r, rp, buffer, sizeof(buffer), origin); if (r->headers_out == NULL) { Loading @@ -1391,6 +1403,18 @@ apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r, return r->status; } /* Now, add in the just read cookies */ apr_table_do(addit_dammit, save_table, r->headers_out, "Set-Cookie", NULL); /* and now load 'em all in */ if (!apr_is_empty_table(save_table)) { apr_table_unset(r->headers_out, "Set-Cookie"); r->headers_out = apr_table_overlay(r->pool, r->headers_out, save_table); } /* can't have both Content-Length and Transfer-Encoding */ if (apr_table_get(r->headers_out, "Transfer-Encoding") && apr_table_get(r->headers_out, "Content-Length")) { Loading Loading
CHANGES +3 −0 Original line number Diff line number Diff line -*- coding: utf-8 -*- Changes with Apache 2.0.60 *) proxy_http.c: Overlay existing cookies with proxied ones, ala httpd-2.2. [Jim Jagielski] *) mod_proxy: ProxyTimeout (and others) ignored due to not merging the *_set params. PR 11540. [Jim Jagielski] Loading
STATUS +0 −5 Original line number Diff line number Diff line Loading @@ -136,11 +136,6 @@ PATCHES ACCEPTED TO BACKPORT FROM TRUNK: Trunk: http://svn.apache.org/viewvc?view=rev&revision=442758 +1: niq, wrowe, rpluem * proxy_http.c: Overlay existing cookies with proxied ones, ala httpd-2.2 and trunk. Patch: http://people.apache.org/~jim/patches/cookie-overlay.patch +1: jim, wrowe, rpluem PATCHES PROPOSED TO BACKPORT FROM TRUNK: [ please place SVN revisions from trunk here, so it is easy to identify exactly what the proposed changes are! Add all new Loading
modules/proxy/proxy_http.c +24 −0 Original line number Diff line number Diff line Loading @@ -1282,6 +1282,12 @@ skip_body: return APR_SUCCESS; } static int addit_dammit(void *v, const char *key, const char *val) { apr_table_addn(v, key, val); return 1; } static apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r, proxy_http_conn_t *p_conn, Loading @@ -1296,6 +1302,7 @@ apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r, char keepchar; request_rec *rp; apr_bucket *e; apr_table_t *save_table; int len, backasswards; int received_continue = 1; /* flag to indicate if we should * loop over response parsing logic Loading Loading @@ -1372,6 +1379,11 @@ apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r, /* N.B. for HTTP/1.0 clients, we have to fold line-wrapped headers*/ /* Also, take care with headers with multiple occurences. */ /* First, tuck away all already existing cookies */ save_table = apr_table_make(r->pool, 2); apr_table_do(addit_dammit, save_table, r->headers_out, "Set-Cookie", NULL); r->headers_out = ap_proxy_read_headers(r, rp, buffer, sizeof(buffer), origin); if (r->headers_out == NULL) { Loading @@ -1391,6 +1403,18 @@ apr_status_t ap_proxy_http_process_response(apr_pool_t * p, request_rec *r, return r->status; } /* Now, add in the just read cookies */ apr_table_do(addit_dammit, save_table, r->headers_out, "Set-Cookie", NULL); /* and now load 'em all in */ if (!apr_is_empty_table(save_table)) { apr_table_unset(r->headers_out, "Set-Cookie"); r->headers_out = apr_table_overlay(r->pool, r->headers_out, save_table); } /* can't have both Content-Length and Transfer-Encoding */ if (apr_table_get(r->headers_out, "Transfer-Encoding") && apr_table_get(r->headers_out, "Content-Length")) { Loading