From: Graham Leggett Date: Wed, 22 Sep 2010 19:56:06 +0000 (+0000) Subject: Trim legacy structure from removed mod_mem_cache. X-Git-Tag: 2.3.9~450 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e215375d25c9bcb8d7409a8054fa73e105be8f3;p=thirdparty%2Fapache%2Fhttpd.git Trim legacy structure from removed mod_mem_cache. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1000160 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/mod_cache.h b/modules/cache/mod_cache.h index 8824ced9b09..c9e19b3afa8 100644 --- a/modules/cache/mod_cache.h +++ b/modules/cache/mod_cache.h @@ -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;