Return-Path: Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 78489 invoked by uid 500); 30 Aug 2001 02:52:19 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Received: (qmail 78486 invoked from network); 30 Aug 2001 02:52:19 -0000 Received: from icarus.apache.org (64.125.133.21) by daedalus.apache.org with SMTP; 30 Aug 2001 02:52:19 -0000 Received: (qmail 44394 invoked by uid 1088); 30 Aug 2001 02:51:26 -0000 Date: 30 Aug 2001 02:51:26 -0000 Message-ID: <20010830025126.44393.qmail@icarus.apache.org> From: stoddard@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/experimental mod_cache.h X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N Status: O X-Status: X-Keywords: X-UID: 602 stoddard 01/08/29 19:51:26 Modified: modules/experimental mod_cache.h Log: Ooops, this should have been committed along with mod_mem_cache changes. Keep track of the number of body bytes written to the cache. Revision Changes Path 1.8 +3 -1 httpd-2.0/modules/experimental/mod_cache.h Index: mod_cache.h =================================================================== RCS file: /home/cvs/httpd-2.0/modules/experimental/mod_cache.h,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- mod_cache.h 2001/08/24 17:01:21 1.7 +++ mod_cache.h 2001/08/30 02:51:26 1.8 @@ -169,7 +169,9 @@ 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);