Commit 9f72f108 authored by Bill Stoddard's avatar Bill Stoddard
Browse files

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
parent bf25fd53
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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 */
    apr_size_t count;   /* Number of body bytes written to the cache so far */

    /* Cache call back functions */
    int (*remove_entity) (cache_handle *h);