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.
50 lines
1.2 KiB
50 lines
1.2 KiB
#ifndef _FILE_CACHE_H_ |
|
#define _FILE_CACHE_H_ |
|
#include "first.h" |
|
|
|
#include "base_decls.h" |
|
#include "buffer.h" |
|
#include "etag.h" |
|
|
|
#include <sys/types.h> |
|
#include <sys/time.h> |
|
#include <sys/stat.h> |
|
|
|
struct stat_cache; /* declaration */ |
|
|
|
typedef struct { |
|
buffer *name; |
|
buffer *etag; |
|
|
|
struct stat st; |
|
|
|
time_t stat_ts; |
|
|
|
#ifdef HAVE_LSTAT |
|
char is_symlink; |
|
#endif |
|
|
|
#ifdef HAVE_FAM_H |
|
int dir_version; |
|
#endif |
|
|
|
buffer *content_type; |
|
} stat_cache_entry; |
|
|
|
__attribute_cold__ |
|
int stat_cache_choose_engine (server *srv, const buffer *stat_cache_string); |
|
|
|
__attribute_cold__ |
|
struct stat_cache *stat_cache_init(server *srv); |
|
|
|
__attribute_cold__ |
|
void stat_cache_free(struct stat_cache *fc); |
|
|
|
const buffer * stat_cache_mimetype_by_ext(const connection *con, const char *name, size_t nlen); |
|
const buffer * stat_cache_content_type_get(server *srv, connection *con, const buffer *name, stat_cache_entry *sce); |
|
const buffer * stat_cache_etag_get(stat_cache_entry *sce, etag_flags_t flags); |
|
handler_t stat_cache_get_entry(server *srv, connection *con, buffer *name, stat_cache_entry **sce); |
|
int stat_cache_open_rdonly_fstat (server *srv, connection *con, buffer *name, struct stat *st); |
|
|
|
int stat_cache_trigger_cleanup(server *srv); |
|
#endif
|
|
|