lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
346 B
12 lines
346 B
#ifndef _FILE_CACHE_H_ |
|
#define _FILE_CACHE_H_ |
|
|
|
#include "base.h" |
|
|
|
file_cache *file_cache_init(void); |
|
void file_cache_free(server *srv, file_cache *fc); |
|
|
|
handler_t file_cache_get_entry(server *srv, connection *con, buffer *name, file_cache_entry **o_fce); |
|
int file_cache_entry_release(server *srv, connection *con, file_cache_entry *fce); |
|
|
|
#endif
|
|
|