use buffer_string_set_length() to truncate strings
[lighttpd.git] / src / etag.h
blob4d47225a14e2dfac679cc6d80335d491f4e24367
1 #ifndef ETAG_H
2 #define ETAG_H
3 #include "first.h"
5 #include "buffer.h"
7 #include <sys/types.h>
8 #include <sys/stat.h>
9 #include <unistd.h>
11 typedef enum { ETAG_USE_INODE = 1, ETAG_USE_MTIME = 2, ETAG_USE_SIZE = 4 } etag_flags_t;
13 int etag_is_equal(buffer *etag, const char *matches, int weak_ok);
14 int etag_create(buffer *etag, struct stat *st, etag_flags_t flags);
15 int etag_mutate(buffer *mut, buffer *etag);
18 #endif