From cvs-return-10277-apmail-httpd-cvs-archive=httpd.apache.org@httpd.apache.org Thu Mar 07 06:07:27 2002 Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 31199 invoked by uid 500); 7 Mar 2002 06:07:27 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 31188 invoked by uid 500); 7 Mar 2002 06:07:26 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 7 Mar 2002 06:07:25 -0000 Message-ID: <20020307060725.15727.qmail@icarus.apache.org> From: rbb@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/proxy proxy_util.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N rbb 02/03/06 22:07:25 Modified: modules/proxy proxy_util.c Log: 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. Revision Changes Path 1.83 +2 -0 httpd-2.0/modules/proxy/proxy_util.c Index: proxy_util.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/proxy/proxy_util.c,v retrieving revision 1.82 retrieving revision 1.83 diff -u -r1.82 -r1.83 --- proxy_util.c 21 Feb 2002 11:42:03 -0000 1.82 +++ proxy_util.c 7 Mar 2002 06:07:25 -0000 1.83 @@ -379,6 +379,8 @@ 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);