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.
16 lines
401 B
16 lines
401 B
#ifndef ETAG_H |
|
#define ETAG_H |
|
#include "first.h" |
|
|
|
#include "buffer.h" |
|
|
|
struct stat; /* declaration */ |
|
|
|
typedef enum { ETAG_USE_INODE = 1, ETAG_USE_MTIME = 2, ETAG_USE_SIZE = 4 } etag_flags_t; |
|
|
|
int etag_is_equal(const buffer *etag, const char *matches, int weak_ok); |
|
int etag_create(buffer *etag, const struct stat *st, int flags); |
|
int etag_mutate(buffer *mut, const buffer *etag); |
|
|
|
|
|
#endif
|
|
|