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-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e63e2310a678aede2ceb8e54eb335500503b2728;p=apache 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 8181b85ad8..86e48dcd3e 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);