You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
429 B
C
15 lines
429 B
C
#ifndef _LIGHTTPD_UTILS_H_
|
|
#define _LIGHTTPD_UTILS_H_
|
|
|
|
#include "settings.h"
|
|
|
|
LI_API void fatal(const gchar* msg);
|
|
|
|
/* set O_NONBLOCK and FD_CLOEXEC */
|
|
LI_API void fd_init(int fd);
|
|
LI_API void ev_io_add_events(struct ev_loop *loop, ev_io *watcher, int events);
|
|
LI_API void ev_io_rem_events(struct ev_loop *loop, ev_io *watcher, int events);
|
|
LI_API void ev_io_set_events(struct ev_loop *loop, ev_io *watcher, int events);
|
|
|
|
#endif
|