2
0
Fork 0
lighttpd2/include/lighttpd/angel.h

18 lines
495 B
C
Raw Normal View History

2008-08-05 15:08:32 +00:00
#ifndef _LIGHTTPD_ANGEL_H_
#define _LIGHTTPD_ANGEL_H_
/* interface to the angel; implementation needs to work without angel too */
2008-12-20 15:25:02 +00:00
/* listen to a socket */
LI_API int angel_listen(server *srv, GString *str);
2008-08-05 15:08:32 +00:00
2008-12-22 16:03:43 +00:00
/* send log messages during startup to angel, frees the string */
2008-12-20 15:25:02 +00:00
LI_API gboolean angel_log(server *srv, GString *str);
/* angle_fake definitions, only for internal use */
int angel_fake_listen(server *srv, GString *str);
gboolean angel_fake_log(server *srv, GString *str);
2008-08-05 15:08:32 +00:00
#endif