--- /dev/null
+ *) mod_http2: update to version 2.0.38
+ Source sync with mod_h2 github repository. No functional change.
+ [Stefan Eissing]
static struct h2_workers *workers;
-static int async_mpm, mpm_can_waitio;
+static int async_mpm;
+#ifdef AP_MPMQ_CAN_WAITIO
+static int mpm_can_waitio;
+#endif
APR_OPTIONAL_FN_TYPE(ap_logio_add_bytes_in) *h2_c_logio_add_bytes_in;
APR_OPTIONAL_FN_TYPE(ap_logio_add_bytes_out) *h2_c_logio_add_bytes_out;
apr_allocator_t *allocator;
apr_pool_t *stream_pool;
apr_status_t rv;
-
+
rv = apr_allocator_create(&allocator);
if (rv != APR_SUCCESS)
return NULL;
apr_allocator_owner_set(allocator, stream_pool);
apr_pool_abort_set(abort_on_oom, stream_pool);
apr_pool_tag(stream_pool, "h2_stream");
-
+
stream = h2_stream_create(stream_id, stream_pool, session,
session->monitor, initiated_on);
if (stream) {
* @macro
* Version number of the http2 module as c string
*/
-#define MOD_HTTP2_VERSION "2.0.37"
+#define MOD_HTTP2_VERSION "2.0.38"
/**
* @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 0x020025
+#define MOD_HTTP2_VERSION_NUM 0x020026
#endif /* mod_h2_h2_version_h */