From: Jeff Trawick Date: Thu, 2 Apr 2009 11:00:14 +0000 (+0000) Subject: document the key API considerations related to the changes for loadable MPMs, and... X-Git-Tag: 2.3.3~736 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=21b68e669b6d56a28a0b562cd41b58defd60d9e9;p=apache document the key API considerations related to the changes for loadable MPMs, and give unbundled modules an MMN to check for git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@761246 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index e5067d56f5..34f9d3d47e 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,12 @@ Changes with Apache 2.3.3 + *) Allow MPMs to be loaded dynamically, as with most other modules. This + required changes to the MPM interfaces. Removed: mpm.h, mpm_default.h + (as an installed header), APACHE_MPM_DIR, MPM_NAME, ap_threads_per_child, + ap_max_daemons_limit, ap_my_generation, etc. ap_mpm_query() can't be + called until after the register-hooks phase. [Jeff Trawick] + *) mod_ssl: Add SSLProxyCheckPeerExpire and SSLProxyCheckPeerCN directives to enable stricter checking of remote server certificates. [Ruediger Pluem] diff --git a/include/ap_mmn.h b/include/ap_mmn.h index a147528c6d..90f85bba6b 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -190,14 +190,17 @@ * 20090131.0 (2.3.2-dev) Remove ap_default_type(), disable DefaultType * 20090208.0 (2.3.2-dev) Add conn_rec::current_thread. * 20090208.1 (2.3.3-dev) Add ap_retained_data_create()/ap_retained_data_get() + * 20090401.0 (2.3.3-dev) Remove ap_threads_per_child, ap_max_daemons_limit, + * ap_my_generation, etc. ap_mpm_query() can't be called + * until after the register-hooks phase. */ #define MODULE_MAGIC_COOKIE 0x41503234UL /* "AP24" */ #ifndef MODULE_MAGIC_NUMBER_MAJOR -#define MODULE_MAGIC_NUMBER_MAJOR 20090208 +#define MODULE_MAGIC_NUMBER_MAJOR 20090401 #endif -#define MODULE_MAGIC_NUMBER_MINOR 1 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 0 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a