From: Greg Stein Date: Mon, 18 Mar 2002 22:29:49 +0000 (+0000) Subject: A little mgmt overhead for the mod_dav API change. X-Git-Tag: 2.0.34~252 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1616923b6e32b5a9be68a51fad9a6f3608384aa4;p=apache A little mgmt overhead for the mod_dav API change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94004 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index d48b4eb531..b4d5f93a71 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ Changes with Apache 2.0.34-dev + *) mod_dav's APIs for REPORT response handling was changed so that + providers can generate the content directly into the output filter + stack, rather than buffering the response into memory. [Greg Stein] + *) Fix a hang condition with graceful restart and prefork MPM in the situation where MaxClients is very high but much fewer servers are actually started at the time of the diff --git a/include/ap_mmn.h b/include/ap_mmn.h index 0db5f6ebd0..b556aae41b 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -99,12 +99,13 @@ * 20020220 (2.0.33-dev) bump for scoreboard.h structure change * 20020302 (2.0.33-dev) bump for protocol_filter additions. * 20020306 (2.0.34-dev) bump for filter type renames. + * 20020318 (2.0.34-dev) mod_dav's API for REPORT generation changed */ #define MODULE_MAGIC_COOKIE 0x41503230UL /* "AP20" */ #ifndef MODULE_MAGIC_NUMBER_MAJOR -#define MODULE_MAGIC_NUMBER_MAJOR 20020306 +#define MODULE_MAGIC_NUMBER_MAJOR 20020318 #endif #define MODULE_MAGIC_NUMBER_MINOR 0 /* 0...n */ #define MODULE_MAGIC_NUMBER MODULE_MAGIC_NUMBER_MAJOR /* backward compat */