From: Stefan Eissing Date: Tue, 8 Dec 2015 13:32:34 +0000 (+0000) Subject: removing HTTP_HEADER output filter on upgraded connections, so timeouts do not send... X-Git-Tag: 2.5.0-alpha~2552 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56ec73ade44a6ce76ecc7f40b1d377dc0ed8efb7;p=thirdparty%2Fapache%2Fhttpd.git removing HTTP_HEADER output filter on upgraded connections, so timeouts do not send http/1.1 responses any more git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1718598 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http2/h2_switch.c b/modules/http2/h2_switch.c index 49e5440624e..ab8b90f7cc5 100644 --- a/modules/http2/h2_switch.c +++ b/modules/http2/h2_switch.c @@ -152,6 +152,7 @@ static int h2_protocol_switch(conn_rec *c, request_rec *r, server_rec *s, */ ap_remove_input_filter_byhandle(r->input_filters, "http_in"); ap_remove_input_filter_byhandle(r->input_filters, "reqtimeout"); + ap_remove_output_filter_byhandle(r->output_filters, "HTTP_HEADER"); /* Ok, start an h2_conn on this one. */ status = h2_conn_process(r->connection, r, r->server);