blob: b7e6e583e7633cd857e7af6e57f1216bb439eeb7 [file] [log] [blame]
William Lallemand41db4602017-10-30 11:15:51 +01001#ifndef _TYPES_CACHE_H
2#define _TYPES_CACHE_H
3
4struct cache_obj {
5 int exp; /* expire time */
6 int etag; /* e-tag entry */
7 int last; /* last entry */
8 void *buf; /* ptr to buffer */
9}
10
11#endif /*_TYPES_CACHE_H */
12
13