You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2001/08/30 04:51:26 UTC

cvs commit: httpd-2.0/modules/experimental mod_cache.h

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);