From: Ryan Bloom Date: Sun, 22 Oct 2000 15:26:05 +0000 (+0000) Subject: The headers need to be at the end of the request_based filters. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ea638e84837a97d5bffa6db39ea7d180a16518dc;p=apache The headers need to be at the end of the request_based filters. Submitted by: Jon Travis git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86703 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_core.c b/modules/http/http_core.c index 368ed40f55..690307ebce 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -3579,7 +3579,7 @@ static void register_hooks(void) ap_register_input_filter("HTTP_IN", ap_http_filter, AP_FTYPE_CONNECTION); ap_register_input_filter("DECHUNK", ap_dechunk_filter, AP_FTYPE_CONNECTION + 1); ap_register_input_filter("CORE_IN", core_input_filter, AP_FTYPE_CONNECTION); - ap_register_output_filter("HTTP_HEADER", ap_http_header_filter, AP_FTYPE_CONTENT + 1); + ap_register_output_filter("HTTP_HEADER", ap_http_header_filter, AP_FTYPE_CONTENT - 1); ap_register_output_filter("CORE", core_output_filter, AP_FTYPE_CONNECTION + 1); ap_register_output_filter("SUBREQ_CORE", ap_sub_req_output_filter, AP_FTYPE_CONTENT);