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
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
*) mod_ssl: reset client-verify state of ssl when aborting renegotiations.
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) {
* @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
* 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 */