diff options
author | Eric Covener <covener@apache.org> | 2014-12-20 16:56:16 +0100 |
---|---|---|
committer | Eric Covener <covener@apache.org> | 2014-12-20 16:56:16 +0100 |
commit | 85d1a0ba01d73dfa1ce6ce14fb11d513168b1b59 (patch) | |
tree | f074da7d75c78c3b8805824b7bee1263c95a2d24 /include | |
parent | xforms (diff) | |
download | apache2-85d1a0ba01d73dfa1ce6ce14fb11d513168b1b59.tar.xz apache2-85d1a0ba01d73dfa1ce6ce14fb11d513168b1b59.zip |
Allow SetHandler+UDS+fcgi to take advantage of dedicated workers including
opting in to connection reuse and other proxy options (max=, etc).
adds 'enablereuse' proxyoption and a minor MMN bump to share
proxy_desocketfy outside of mod_proxy.c, which is required to
match workers to URLs.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1647009 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 8991ce0587..7b9b685a63 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -475,6 +475,7 @@ * ap_have_so_reuseport to ap_listen.h. * 20140627.9 (2.5.0-dev) Add cgi_pass_auth and AP_CGI_PASS_AUTH_* to * core_dir_config + * 20140627.10 (2.5.0-dev) Add ap_proxy_de_socketfy to mod_proxy.h */ #define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */ @@ -482,7 +483,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20140627 #endif -#define MODULE_MAGIC_NUMBER_MINOR 9 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 10 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a |