diff options
author | Graham Leggett <minfrin@apache.org> | 2016-02-19 16:00:05 +0100 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2016-02-19 16:00:05 +0100 |
commit | 84051c1c9fa812575a94091b224e192118201778 (patch) | |
tree | ab9d2eac03478ef9b9eee1e3c3dc47cd0e86498b /include/ap_mmn.h | |
parent | Documentation rebuild (diff) | |
download | apache2-84051c1c9fa812575a94091b224e192118201778.tar.xz apache2-84051c1c9fa812575a94091b224e192118201778.zip |
mpm: Add a complete_connection hook that confirms whether an MPM is allowed
to leave the WRITE_COMPLETION phase. Move filter code out of the MPMs.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1731253 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_mmn.h')
-rw-r--r-- | include/ap_mmn.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/ap_mmn.h b/include/ap_mmn.h index d00265edc7..9789081d6f 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -504,6 +504,8 @@ * ap_prep_lingering_close(). * 20150222.11 (2.5.0-dev) Split useragent_host from the conn_rec into * the request_rec, with ap_get_useragent_host() + * 20150222.12 (2.5.0-dev) Add complete_connection hook, + * ap_filter_complete_connection(). */ #define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */ @@ -511,7 +513,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20150222 #endif -#define MODULE_MAGIC_NUMBER_MINOR 11 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 12 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a |