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.
14 lines
386 B
14 lines
386 B
#ifndef _FILE_CACHE_H_ |
|
#define _FILE_CACHE_H_ |
|
#include "first.h" |
|
|
|
#include "base.h" |
|
|
|
stat_cache *stat_cache_init(void); |
|
void stat_cache_free(stat_cache *fc); |
|
|
|
handler_t stat_cache_get_entry(server *srv, connection *con, buffer *name, stat_cache_entry **fce); |
|
handler_t stat_cache_handle_fdevent(server *srv, void *_fce, int revent); |
|
|
|
int stat_cache_trigger_cleanup(server *srv); |
|
#endif
|
|
|