diff options
author | Stefan Eissing <icing@apache.org> | 2022-03-18 10:52:52 +0100 |
---|---|---|
committer | Stefan Eissing <icing@apache.org> | 2022-03-18 10:52:52 +0100 |
commit | 6bd9d17e081692d3555d1c9803962c883acd136b (patch) | |
tree | 61bed2fc5a3746e58932712e5c5eb477a11fa5f0 /include/ap_mmn.h | |
parent | Update to test against OpenSSL 3.0.2. (diff) | |
download | apache2-6bd9d17e081692d3555d1c9803962c883acd136b.tar.xz apache2-6bd9d17e081692d3555d1c9803962c883acd136b.zip |
*) core: adding a new hook and method to the API:
create_secondary_connection and ap_create_secondary_connection()
to setup connections related to a "master" one, as used in
the HTTP/2 protocol implementation.
*) mod_http2: using the new API calls to get rid of knowledge
about how the core handles conn_rec specifics.
Improvements in pollset stream handling to use less sets.
Using atomic read/writes instead of volatiles now.
Keeping a reserve of "transit" pools and bucket_allocs for
use on secondary connections to avoid repeated setup/teardowns.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1899032 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_mmn.h')
-rw-r--r-- | include/ap_mmn.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/ap_mmn.h b/include/ap_mmn.h index 84c566e0f0..6457cb21d9 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -702,6 +702,9 @@ * and ap_thread_current() * 20211221.4 (2.5.1-dev) Add hook child_stopped to get informed that a child * has stopped processing any requests. + * 20211221.5 (2.5.1-dev) Add hook create_secondary_connection and method + * ap_create_secondary_connection() to have connection + * setup of http2-like connections in core. * */ @@ -710,7 +713,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20211221 #endif -#define MODULE_MAGIC_NUMBER_MINOR 4 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 5 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a |