diff options
author | Yann Ylavic <ylavic@apache.org> | 2024-06-26 01:49:09 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2024-06-26 01:49:09 +0200 |
commit | 6937b985ae112de0ad60f12a3cb522b608a4d501 (patch) | |
tree | eef8bc3ca8e607d7608219933d19d0fe2296df9e /include | |
parent | fix comparison of local path on Windows (diff) | |
download | apache2-6937b985ae112de0ad60f12a3cb522b608a4d501.tar.xz apache2-6937b985ae112de0ad60f12a3cb522b608a4d501.zip |
mod_proxy: Fixup UDS filename for mod_proxy called through r->handler.
* modules/proxy/proxy_util.c:
Export ap_proxy_fixup_uds_filename() from fix_uds_filename.
Call it from ap_proxy_pre_request() even for rewritten balancer workers.
* modules/proxy/mod_proxy.h:
Declare ap_proxy_fixup_uds_filename()
* modules/proxy/mod_proxy.c:
Fixup UDS filename from r->handler in proxy_handler().
* include/ap_mmn.h:
Bump MMN minor for ap_proxy_fixup_uds_filename()
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1918626 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-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 f48c3188ec..4e942ada1d 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -729,6 +729,7 @@ * 20211221.22 (2.5.1-dev) Add AP_MPMQ_CAN_WAITIO * 20211221.23 (2.5.1-dev) Add ap_set_content_type_ex(), ap_filepath_merge(), * and AP_REQUEST_TRUSTED_CT BNOTE. + * 20211221.24 (2.5.1-dev) Add ap_proxy_fixup_uds_filename() */ #define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */ @@ -736,7 +737,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20211221 #endif -#define MODULE_MAGIC_NUMBER_MINOR 23 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 24 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a |