diff options
author | Graham Leggett <minfrin@apache.org> | 2022-01-21 01:09:24 +0100 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2022-01-21 01:09:24 +0100 |
commit | 54a200291b345abddd24f1417b62845157aa347c (patch) | |
tree | 5061bba15c15ccd3cec7124b5120c8c6e5f42fff /include/ap_mmn.h | |
parent | Revert 1897156. (diff) | |
download | apache2-54a200291b345abddd24f1417b62845157aa347c.tar.xz apache2-54a200291b345abddd24f1417b62845157aa347c.zip |
event: Add support for non blocking behaviour in the
CONN_STATE_READ_REQUEST_LINE phase, in addition to the existing
CONN_STATE_WRITE_COMPLETION phase. Update mod_ssl to perform non blocking
TLS handshakes.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1897281 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_mmn.h')
-rw-r--r-- | include/ap_mmn.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ap_mmn.h b/include/ap_mmn.h index 33cd91e5a7..6dbbe5e27c 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -698,6 +698,7 @@ * 20210926.2 (2.5.1-dev) Add ap_post_read_request() * 20211221.0 (2.5.1-dev) Bump PROXY_WORKER_MAX_NAME_SIZE from 256 to 384, * add PROXY_WORKER_UDS_PATH_SIZE. + * 20211221.1 (2.5.1-dev) Add read_line to scoreboard. * */ @@ -706,7 +707,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20211221 #endif -#define MODULE_MAGIC_NUMBER_MINOR 0 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 1 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a |