diff options
author | Stefan Eissing <icing@apache.org> | 2024-01-17 09:38:02 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2024-01-17 09:38:02 +0100 |
commit | bc0e56cdd3eebbe0fae3f9f5770b09236e8a4a17 (patch) | |
tree | fc928af7aad8ccabea79376fd16d464f7d6cdd5e /modules/http2/h2.h | |
parent | mod_headers: Avoid infinite recursion with the edit* action and empty matches. (diff) | |
download | apache2-bc0e56cdd3eebbe0fae3f9f5770b09236e8a4a17.tar.xz apache2-bc0e56cdd3eebbe0fae3f9f5770b09236e8a4a17.zip |
*) mod_http2: v2.0.26 with the following fixes:
- Fixed `Date` header on requests upgraded from HTTP/1.1 (h2c). Fixes
<https://github.com/icing/mod_h2/issues/272>.
- Fixed small memory leak in h2 header bucket free. Thanks to
Michael Kaufmann for finding this and providing the fix.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1915281 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2/h2.h')
-rw-r--r-- | modules/http2/h2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http2/h2.h b/modules/http2/h2.h index 30ad990443..f496a6dcb2 100644 --- a/modules/http2/h2.h +++ b/modules/http2/h2.h @@ -35,7 +35,7 @@ struct h2_stream; #define H2_USE_PIPES (APR_FILES_AS_SOCKETS && APR_VERSION_AT_LEAST(1,6,0)) #endif -#if AP_MODULE_MAGIC_AT_LEAST(20211221, 15) +#if AP_MODULE_MAGIC_AT_LEAST(20120211, 129) #define H2_USE_POLLFD_FROM_CONN 1 #else #define H2_USE_POLLFD_FROM_CONN 0 |