[mod_accesslog] %{ratio}n logs compression ratio (fixes #2133)
[lighttpd.git] / src / log.h
blob32ce8d458204ab3ca6996bf1573041c228dcb97d
1 #ifndef _LOG_H_
2 #define _LOG_H_
3 #include "first.h"
5 #include "server.h"
7 struct timespec; /* declaration */
8 int log_clock_gettime_realtime (struct timespec *ts);
10 ssize_t write_all(int fd, const void* buf, size_t count);
12 /* Close fd and _try_ to get a /dev/null for it instead.
13 * Returns 0 on success and -1 on failure (fd gets closed in all cases)
15 int openDevNull(int fd);
17 int open_logfile_or_pipe(server *srv, const char* logfile);
19 int log_error_open(server *srv);
20 int log_error_close(server *srv);
21 int log_error_write(server *srv, const char *filename, unsigned int line, const char *fmt, ...);
22 int log_error_write_multiline_buffer(server *srv, const char *filename, unsigned int line, buffer *multiline, const char *fmt, ...);
23 int log_error_cycle(server *srv);
25 #endif