Thanks for the catch! Will fix tomorrow.
> Am 01.11.2015 um 08:25 schrieb Christophe JAILLET > <[email protected]>: > > Hi, > > Le 30/10/2015 17:15, [email protected] a écrit : >> Author: icing >> Date: Fri Oct 30 16:15:40 2015 >> New Revision: 1711503 >> >> URL: http://svn.apache.org/viewvc?rev=1711503&view=rev >> Log: >> improved h2c write performance >> >> URL: >> http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http2/h2_session.c?rev=1711503&r1=1711502&r2=1711503&view=diff >> ============================================================================== >> --- httpd/httpd/trunk/modules/http2/h2_session.c (original) >> +++ httpd/httpd/trunk/modules/http2/h2_session.c Fri Oct 30 16:15:40 2015 >> [...] >> @@ -1180,7 +1203,7 @@ static ssize_t stream_data_cb(nghttp2_se >> AP_DEBUG_ASSERT(!h2_stream_is_suspended(stream)); >> - if (h2_conn_io_is_buffered(&session->io)) { >> + if (1 || h2_conn_io_is_buffered(&session->io)) { >> status = h2_stream_prep_read(stream, &nread, &eos); >> if (nread) { >> *data_flags |= NGHTTP2_DATA_FLAG_NO_COPY; > Is it intentional or a left-over? > > CJ >
