diff options
author | Yann Ylavic <ylavic@apache.org> | 2020-12-03 15:06:17 +0100 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2020-12-03 15:06:17 +0100 |
commit | b288fac3b5bf3e288dfe1aaff2ae8089cff6b468 (patch) | |
tree | b9ac0c07114c66b14547998d31fa61f8a070a7b7 /include | |
parent | * modules/metadata/mod_unique_id.c: Use base64url encoding for (diff) | |
download | apache2-b288fac3b5bf3e288dfe1aaff2ae8089cff6b468.tar.xz apache2-b288fac3b5bf3e288dfe1aaff2ae8089cff6b468.zip |
mod_proxy: provide prefetching and spooling mechanisms to all proxy modules.
Export ap_proxy_prefetch_input(), ap_proxy_spool_input() and
ap_proxy_read_input() from mod_proxy_http to mod_proxy.h/proxy_util.c so
that they are usable by all proxy modules.
mod_proxy_fcgi will use them in a following commit.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1884067 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-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 9e7b870c1a..b25fafba89 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -659,6 +659,9 @@ * dav_find_attr(). * 20200705.2 (2.5.1-dev) Add dav_liveprop_elem structure and * DAV_PROP_ELEMENT key. + * 20200705.3 (2.5.1-dev) Add ap_proxy_prefetch_input(), + * ap_proxy_spool_input() and + * ap_proxy_read_input(). */ #define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */ @@ -666,7 +669,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20200705 #endif -#define MODULE_MAGIC_NUMBER_MINOR 2 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 3 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a |