You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by mi...@apache.org on 2010/09/22 21:56:06 UTC

svn commit: r1000160 - /httpd/httpd/trunk/modules/cache/mod_cache.h

Author: minfrin
Date: Wed Sep 22 19:56:06 2010
New Revision: 1000160

URL: http://svn.apache.org/viewvc?rev=1000160&view=rev
Log:
Trim legacy structure from removed mod_mem_cache.

Modified:
    httpd/httpd/trunk/modules/cache/mod_cache.h

Modified: httpd/httpd/trunk/modules/cache/mod_cache.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_cache.h?rev=1000160&r1=1000159&r2=1000160&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/mod_cache.h (original)
+++ httpd/httpd/trunk/modules/cache/mod_cache.h Wed Sep 22 19:56:06 2010
@@ -203,12 +203,6 @@ struct cache_info {
 
 /* cache handle information */
 
-/* XXX TODO On the next structure change/MMN bump,
- * count must become an apr_off_t, representing
- * the potential size of disk cached objects.
- * Then dig for
- * "XXX Bad Temporary Cast - see cache_object_t notes"
- */
 typedef struct cache_object cache_object_t;
 struct cache_object {
     const char *key;
@@ -216,10 +210,6 @@ struct cache_object {
     cache_info info;
     /* Opaque portion (specific to the implementation) of the cache object */
     void *vobj;
-    /* FIXME: These are only required for mod_mem_cache. */
-    apr_size_t count;   /* Number of body bytes written to the cache so far */
-    int complete;
-    apr_uint32_t refcount;  /* refcount and bit flag to cleanup object */
 };
 
 typedef struct cache_handle cache_handle_t;