Searched refs:http_cache_entry (Results 1 - 1 of 1) sorted by relevance

/barrelfish-2018-10-04/usr/webserver/
H A Dhttp_cache.c49 struct http_cache_entry { struct
58 struct http_cache_entry *next; /* for linked list */
65 static struct http_cache_entry *cache_table = NULL; /*root cached entry array */
66 static struct http_cache_entry *error_cache = NULL; /* cache entry for error */
129 static struct http_cache_entry * cache_entry_allocate (void)
131 struct http_cache_entry *e;
132 e = (struct http_cache_entry *)
133 malloc (sizeof(struct http_cache_entry));
135 memset (e, 0, sizeof(struct http_cache_entry));
151 static void add_connection(struct http_cache_entry *
[all...]

Completed in 32 milliseconds