summaryrefslogtreecommitdiff
path: root/data/lighttpd/lighttpd-1.4.53/src/stat_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'data/lighttpd/lighttpd-1.4.53/src/stat_cache.h')
-rw-r--r--data/lighttpd/lighttpd-1.4.53/src/stat_cache.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/data/lighttpd/lighttpd-1.4.53/src/stat_cache.h b/data/lighttpd/lighttpd-1.4.53/src/stat_cache.h
new file mode 100644
index 000000000..e5fc2d748
--- /dev/null
+++ b/data/lighttpd/lighttpd-1.4.53/src/stat_cache.h
@@ -0,0 +1,45 @@
+#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;
+
+int stat_cache_choose_engine (server *srv, const buffer *stat_cache_string);
+struct stat_cache *stat_cache_init(server *srv);
+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