mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-13 21:06:13 -04:00
14 lines
220 B
C
14 lines
220 B
C
|
|
#ifndef _TYPES_CACHE_H
|
||
|
|
#define _TYPES_CACHE_H
|
||
|
|
|
||
|
|
struct cache_obj {
|
||
|
|
int exp; /* expire time */
|
||
|
|
int etag; /* e-tag entry */
|
||
|
|
int last; /* last entry */
|
||
|
|
void *buf; /* ptr to buffer */
|
||
|
|
}
|
||
|
|
|
||
|
|
#endif /*_TYPES_CACHE_H */
|
||
|
|
|
||
|
|
|