diff options
author | Joe Orton <jorton@apache.org> | 2007-12-03 11:55:58 +0100 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2007-12-03 11:55:58 +0100 |
commit | 8026ae588964b49614ccd4da2a20186a1d25a514 (patch) | |
tree | 6156da39ffb87a43b0b303ec241c1d8ac19ea22b /include/ap_mmn.h | |
parent | Update transformations (diff) | |
download | apache2-8026ae588964b49614ccd4da2a20186a1d25a514.tar.xz apache2-8026ae588964b49614ccd4da2a20186a1d25a514.zip |
Further to r599711; document new API guarantee for handling non-NULL
request_rec pointer when adding connection filters; minor MMN bump:
* server/util_filter.c (add_any_filter_handle): Set f->r for
connection filters even if passed-in r is non-NULL. Style nit fix
also.
* include/util_filter.h (ap_add_output_filter,
ap_add_output_filter_handle): Document new API guarantee.
* include/ap_mmn.h: Minor MMN bump.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@600473 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 d98cc2993b..6238a84c41 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -141,6 +141,8 @@ * public scoreboard API. * 20071108.1 (2.3.0-dev) Add the optional kept_body brigade to request_rec * 20071108.2 (2.3.0-dev) Add st and keep fields to struct util_ldap_connection_t + * 20071108.3 (2.3.0-dev) Add API guarantee for adding connection filters + * with non-NULL request_rec pointer (ap_add_*_filter*) */ #define MODULE_MAGIC_COOKIE 0x41503234UL /* "AP24" */ @@ -148,7 +150,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20071108 #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 |