diff options
author | Yann Ylavic <ylavic@apache.org> | 2021-12-21 19:42:30 +0100 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2021-12-21 19:42:30 +0100 |
commit | 85051bd9ac19975d525b3dda14a460e41335f8ab (patch) | |
tree | afad59a29fd298dd8483c3be0c0596843b9bfed0 /include/ap_mmn.h | |
parent | Reserve an APLOGNO for an eventual 2.4.x (only) backport. [skip ci] (diff) | |
download | apache2-85051bd9ac19975d525b3dda14a460e41335f8ab.tar.xz apache2-85051bd9ac19975d525b3dda14a460e41335f8ab.zip |
mod_proxy: Bump max worker name to 384 chars.
The worker name is a fully qualified URI while the hostname's limit is 256
already, so potentially more than 256 are needed to store the name. Let's
use 384.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1896253 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_mmn.h')
-rw-r--r-- | include/ap_mmn.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/ap_mmn.h b/include/ap_mmn.h index 67f3637448..33cd91e5a7 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -696,15 +696,17 @@ * 20210926.1 (2.5.1-dev) Add ap_unescape_url_ex() and deprecate * AP_NORMALIZE_DROP_PARAMETERS * 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. * */ #define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */ #ifndef MODULE_MAGIC_NUMBER_MAJOR -#define MODULE_MAGIC_NUMBER_MAJOR 20210926 +#define MODULE_MAGIC_NUMBER_MAJOR 20211221 #endif -#define MODULE_MAGIC_NUMBER_MINOR 2 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 0 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a |