summaryrefslogtreecommitdiff
path: root/modules/http2/h2_version.h
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2019-03-07 09:41:15 +0000
committerStefan Eissing <icing@apache.org>2019-03-07 09:41:15 +0000
commit9b3dd74c5873bb33b58b5802272a7fb56204ec99 (patch)
treeae39e482d798471d3075f16c392abf5a204e9359 /modules/http2/h2_version.h
parent10d302435cc77899f630781d5bd2b1c0fcd7fa0e (diff)
downloadhttpd-9b3dd74c5873bb33b58b5802272a7fb56204ec99.tar.gz
*) mod_http2: new configuration directive: ```H2Padding numbits``` to control
padding of HTTP/2 payload frames. 'numbits' is a number from 0-8, controlling the range of padding bytes added to a frame. The actual number added is chosen randomly per frame. This applies to HEADERS, DATA and PUSH_PROMISE frames equally. The default continues to be 0, e.g. no padding. [Stefan Eissing] *) mod_http2: ripping out all the h2_req_engine internal features now that mod_proxy_http2 has no more need for it. Optional functions are still declared but no longer implemented. While previous mod_proxy_http2 will work with this, it is recommeneded to run the matching versions of both modules. [Stefan Eissing] *) mod_proxy_http2: changed mod_proxy_http2 implementation and fixed several bugs which resolve PR63170. The proxy module does now a single h2 request on the (reused) connection and returns. [Stefan Eissing] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1854963 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2_version.h')
-rw-r--r--modules/http2/h2_version.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/http2/h2_version.h b/modules/http2/h2_version.h
index 5260c2258c..286e98f1ce 100644
--- a/modules/http2/h2_version.h
+++ b/modules/http2/h2_version.h
@@ -27,7 +27,7 @@
* @macro
* Version number of the http2 module as c string
*/
-#define MOD_HTTP2_VERSION "1.12.6-DEV"
+#define MOD_HTTP2_VERSION "1.14.1-git"
/**
* @macro
@@ -35,7 +35,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 0x010c06
+#define MOD_HTTP2_VERSION_NUM 0x010e01
#endif /* mod_h2_h2_version_h */