Commit d02d1864 authored by Stefan Eissing's avatar Stefan Eissing
Browse files

Merge of r1752087 from trunk:

mod_http2: fixes flush handling for SETTINGS when no streams are open



git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1752095 13f79535-47bb-0310-9956-ffa450edef68
parent 199b3247
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -2,6 +2,8 @@

Changes with Apache 2.4.24

  *) mod_http2: fixes connection flush when answering SETTINGS without any
     stream open. [Moto Ishizawa <@summerwind>, Stefan Eissing]
     
Changes with Apache 2.4.23

+1 −0
Original line number Diff line number Diff line
@@ -2088,6 +2088,7 @@ apr_status_t h2_session_process(h2_session *session, int async)
                
            case H2_SESSION_ST_IDLE:
                /* make certain, we send everything before we idle */
                h2_conn_io_flush(&session->io);
                if (!session->keep_sync_until && async && !session->open_streams
                    && !session->r && session->remote.emitted_count) {
                    if (trace) {
+2 −2
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@
 * @macro
 * Version number of the http2 module as c string
 */
#define MOD_HTTP2_VERSION "1.5.11"
#define MOD_HTTP2_VERSION "1.5.12"

/**
 * @macro
@@ -34,7 +34,7 @@
 * release. This is a 24 bit number with 8 bits for major number, 8 bits
 * for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
 */
#define MOD_HTTP2_VERSION_NUM 0x01050b
#define MOD_HTTP2_VERSION_NUM 0x01050c


#endif /* mod_h2_h2_version_h */