-*- coding: utf-8 -*-
Changes with Apache 2.5.0
- *) mod_http2: not counting file buckets again stream max buffer limits.
- Effectively transfering static files in one step from slave to master
- connection. [Stefan Eissing]
-
- *) mod_http2: comforting ap_check_pipeline() on slave connections
- to facilitate reuse (see https://github.com/icing/mod_h2/issues/128).
- [Stefan Eissing, reported by Armin Abfalterer]
-
- *) mod_http2: http/2 streams now with state handling/transitions as defined
- in RFC7540. Stream cleanup/connection shutdown reworked to become easier
- to understand/maintain/debug. Added many asserts on state and cleanup
- transitions. [Stefan Eissing]
-
*) mod_proxy_fcgi: Add ProxyFCGISetEnvIf to fixup CGI environment
variables just before invoking the FastCGI. [Eric Covener,
Jacob Champion]
line = *buffer? buffer : "(empty)";
}
/* Intentional no APLOGNO */
- ap_log_cerror(APLOG_MARK, level, 0, c, "h2_session(%s)-%s: %s",
- c->log_id, tag, line);
+ ap_log_cerror(APLOG_MARK, level, 0, c, "h2_session(%ld)-%s: %s",
+ c->id, tag, line);
}
* @macro
* Version number of the http2 module as c string
*/
-#define MOD_HTTP2_VERSION "1.9.0-DEV"
+#define MOD_HTTP2_VERSION "1.9.1-DEV"
/**
* @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 0x010900
+#define MOD_HTTP2_VERSION_NUM 0x010901
#endif /* mod_h2_h2_version_h */