Return-Path: X-Original-To: apmail-httpd-cvs-archive@www.apache.org Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9CE2F179AE for ; Tue, 17 Nov 2015 11:30:37 +0000 (UTC) Received: (qmail 40188 invoked by uid 500); 17 Nov 2015 11:30:35 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 40110 invoked by uid 500); 17 Nov 2015 11:30:35 -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: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 40079 invoked by uid 99); 17 Nov 2015 11:30:35 -0000 Received: from Unknown (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 17 Nov 2015 11:30:35 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id C6E62C05AD for ; Tue, 17 Nov 2015 11:30:34 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.79 X-Spam-Level: * X-Spam-Status: No, score=1.79 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, T_RP_MATCHES_RCVD=-0.01] autolearn=disabled Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id CYtBa3gzIIIy for ; Tue, 17 Nov 2015 11:30:33 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with ESMTP id BCE7621249 for ; Tue, 17 Nov 2015 11:30:32 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id D68ABE00B0 for ; Tue, 17 Nov 2015 11:30:31 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id C61E73A024F for ; Tue, 17 Nov 2015 11:30:31 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1714756 - in /httpd/httpd/trunk/modules/http2: h2_h2.c h2_switch.c Date: Tue, 17 Nov 2015 11:30:31 -0000 To: cvs@httpd.apache.org From: icing@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20151117113031.C61E73A024F@svn01-us-west.apache.org> Author: icing Date: Tue Nov 17 11:30:31 2015 New Revision: 1714756 URL: http://svn.apache.org/viewvc?rev=1714756&view=rev Log: reverting change re flush Modified: httpd/httpd/trunk/modules/http2/h2_h2.c httpd/httpd/trunk/modules/http2/h2_switch.c Modified: httpd/httpd/trunk/modules/http2/h2_h2.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_h2.c?rev=1714756&r1=1714755&r2=1714756&view=diff ============================================================================== --- httpd/httpd/trunk/modules/http2/h2_h2.c (original) +++ httpd/httpd/trunk/modules/http2/h2_h2.c Tue Nov 17 11:30:31 2015 @@ -648,14 +648,10 @@ int h2_h2_process_conn(conn_rec* c) * the connection. */ if (h2_ctx_is_active(ctx)) { - apr_status_t status; - ap_log_cerror(APLOG_MARK, APLOG_TRACE1, 0, c, "h2_h2, connection, h2 active"); - status = h2_conn_process(c, NULL); - ap_flush_conn(c); - return status; + return h2_conn_process(c, NULL); } ap_log_cerror(APLOG_MARK, APLOG_TRACE1, 0, c, "h2_h2, declined"); Modified: httpd/httpd/trunk/modules/http2/h2_switch.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_switch.c?rev=1714756&r1=1714755&r2=1714756&view=diff ============================================================================== --- httpd/httpd/trunk/modules/http2/h2_switch.c (original) +++ httpd/httpd/trunk/modules/http2/h2_switch.c Tue Nov 17 11:30:31 2015 @@ -160,7 +160,6 @@ static int h2_protocol_switch(conn_rec * ap_log_rerror(APLOG_MARK, APLOG_DEBUG, status, r, "session proessed, unexpected status"); } - ap_flush_conn(r->connection); } return DONE; }