From: Ryan Bloom Date: Thu, 7 Mar 2002 06:07:25 +0000 (+0000) Subject: We need to setup protocol filters for the fake request. If we don't, X-Git-Tag: CHANGES~215 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94c63c92a8ad29ccf3e1751e087c329e7a26170f;p=thirdparty%2Fapache%2Fhttpd.git We need to setup protocol filters for the fake request. If we don't, then when any request filters are added, the connection filters will be lost. This fixes the proxy. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93752 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index 8181b85ad87..86e48dcd3e0 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -379,6 +379,8 @@ PROXY_DECLARE(request_rec *)ap_proxy_make_fake_req(conn_rec *c, request_rec *r) rp->connection = c; rp->output_filters = c->output_filters; rp->input_filters = c->input_filters; + rp->proto_output_filters = c->output_filters; + rp->proto_input_filters = c->input_filters; rp->request_config = ap_create_request_config(c->pool); proxy_run_create_req(r, rp);