diff options
author | Graham Leggett <minfrin@apache.org> | 2010-09-22 21:56:06 +0200 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2010-09-22 21:56:06 +0200 |
commit | 7e215375d25c9bcb8d7409a8054fa73e105be8f3 (patch) | |
tree | 1c25e06f9159b4d87dcfba023e24865e2eb0872b /modules/cache/mod_cache.h | |
parent | Remove deprecated ap_cache_cacheable_hdrs_out. (diff) | |
download | apache2-7e215375d25c9bcb8d7409a8054fa73e105be8f3.tar.xz apache2-7e215375d25c9bcb8d7409a8054fa73e105be8f3.zip |
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
Diffstat (limited to 'modules/cache/mod_cache.h')
-rw-r--r-- | modules/cache/mod_cache.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/modules/cache/mod_cache.h b/modules/cache/mod_cache.h index 8824ced9b0..c9e19b3afa 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; |