summaryrefslogtreecommitdiff
path: root/modules/http2/h2_version.h
diff options
context:
space:
mode:
authorStefan Eissing <icing@apache.org>2022-10-11 14:54:08 +0000
committerStefan Eissing <icing@apache.org>2022-10-11 14:54:08 +0000
commit61ebb22bf9ff55a09a452b837fdbcf67c219c9bb (patch)
tree66ff53dcf0f58fc6c880022277518dc7ae33c1c2 /modules/http2/h2_version.h
parentac04f2ff6b6590a6091b71b8c829e9b067b0fbbb (diff)
downloadhttpd-61ebb22bf9ff55a09a452b837fdbcf67c219c9bb.tar.gz
Sync with v2.0.10 from github:
* Extensive testing in production done by Alessandro Bianchi (@alexskynet) on the v2.0.x versions for stability. Many thanks! * refactored stream response handling to reflect the different phases (response/data/trailers) more clearly and help resolving cpu busy loops. * Adding more negative tests for handling of errored responses to cover edge cases. * mod_http2: fixed handling of response where neiter an EOS nor an ERROR was received as a cause to reset the stream. * mod_proxy_http2: generating error buckets for fault response bodies, to signal failure to fron when response header were already sent. v2.0.9 -------------------------------------------------------------------------------- * Fixed a bug where errors during reponse body handling did not lead to a proper RST_STREAM. Instead processing went into an infinite loop. Extended test cases to catch this condition. v2.0.8 -------------------------------------------------------------------------------- * Delaying input setup of a stream just before processing starts. This allows any EOS indicator arriving from the client before that to take effect. Without knowing that a stream has no input, internal processing has to simulate chunked encoding. This is not wrong, but somewhat more expensive and mod_security has been reported to be allergic to seeing 'chunked' on some requests. See <https://bz.apache.org/bugzilla/show_bug.cgi?id=66282>. * mod_proxy_http2: fixed #235 by no longer forwarding 'Host:' header when request ':authority' is known. Improved test case that did not catch that the previous 'fix' was incorrect. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1904522 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 f0da61ed40..c939b8c8af 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 "2.0.8-dev"
+#define MOD_HTTP2_VERSION "2.0.10"
/**
* @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 0x020008
+#define MOD_HTTP2_VERSION_NUM 0x02000a
#endif /* mod_h2_h2_version_h */