From: Bill Stoddard Date: Thu, 30 Aug 2001 02:51:26 +0000 (+0000) Subject: Ooops, this should have been committed along with mod_mem_cache changes. X-Git-Tag: 2.0.26~394 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=841b01a7c991c53c15f7bfac75a470fa26710120;p=apache Ooops, this should have been committed along with mod_mem_cache changes. Keep track of the number of body bytes written to the cache. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90793 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/mod_cache.h b/modules/experimental/mod_cache.h index d7f465b04e..c68462cd56 100644 --- a/modules/experimental/mod_cache.h +++ b/modules/experimental/mod_cache.h @@ -169,7 +169,9 @@ typedef struct cache_handle cache_handle; struct cache_handle { cache_info *info; cache_handle *next; - void *cache_obj; /* Pointer to cache specific object */ + + void *cache_obj; /* Pointer to cache specific object */ + apr_size_t count; /* Number of body bytes written to the cache so far */ /* Cache call back functions */ int (*remove_entity) (cache_handle *h);