You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ic...@apache.org on 2015/12/08 14:32:34 UTC

svn commit: r1718598 - /httpd/httpd/trunk/modules/http2/h2_switch.c

Author: icing
Date: Tue Dec  8 13:32:34 2015
New Revision: 1718598

URL: http://svn.apache.org/viewvc?rev=1718598&view=rev
Log:
removing HTTP_HEADER output filter on upgraded connections, so timeouts do not send http/1.1 responses any more

Modified:
    httpd/httpd/trunk/modules/http2/h2_switch.c

Modified: httpd/httpd/trunk/modules/http2/h2_switch.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_switch.c?rev=1718598&r1=1718597&r2=1718598&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http2/h2_switch.c (original)
+++ httpd/httpd/trunk/modules/http2/h2_switch.c Tue Dec  8 13:32:34 2015
@@ -152,6 +152,7 @@ static int h2_protocol_switch(conn_rec *
              */
             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);