From e634f671909e51660e2019ca91fc6865f9a6c168 Mon Sep 17 00:00:00 2001 From: Greg Stein Date: Mon, 14 Jan 2002 13:46:59 +0000 Subject: [PATCH] Note the change in the mod_dav provider API. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92849 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES | 4 ++++ include/ap_mmn.h | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index d0b45ba16a..51624f68e3 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,9 @@ Changes with Apache 2.0.31-dev + *) mod_dav now asks its provider to place content directly into the + filter stack when handling a GET request. The mod_dav/provider + API has changed, so providers need to be updated. [Greg Stein] + *) Clear the output socket descriptor in unixd_accept() to make sure we don't supply a bogus socket to the caller if the accept fails. This caused problems with the worker MPM, which tried to process diff --git a/include/ap_mmn.h b/include/ap_mmn.h index 3db6e3d1e4..20ae6dd5a7 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -90,12 +90,14 @@ * core_dir_config * 20020109 (2.0.31-dev) bump for changed shm and scoreboard declarations * 20020111 (2.0.31-dev) bump for ETag fields added at end of cor_dir_config + * 20020114 (2.0.31-dev) mod_dav changed how it asks its provider to fulfill + * a GET request */ #define MODULE_MAGIC_COOKIE 0x41503230UL /* "AP20" */ #ifndef MODULE_MAGIC_NUMBER_MAJOR -#define MODULE_MAGIC_NUMBER_MAJOR 20020111 +#define MODULE_MAGIC_NUMBER_MAJOR 20020114 #endif #define MODULE_MAGIC_NUMBER_MINOR 0 /* 0...n */ #define MODULE_MAGIC_NUMBER MODULE_MAGIC_NUMBER_MAJOR /* backward compat */ -- 2.50.1