2008-06-24 19:19:20 +00:00
|
|
|
#ifndef _LIGHTTPD_BASE_H_
|
|
|
|
#define _LIGHTTPD_BASE_H_
|
|
|
|
|
|
|
|
#include "settings.h"
|
|
|
|
|
|
|
|
#define CONST_STR_LEN(x) x, x ? sizeof(x) - 1 : 0
|
|
|
|
|
|
|
|
struct server;
|
|
|
|
typedef struct server server;
|
|
|
|
|
|
|
|
struct connection;
|
|
|
|
typedef struct connection connection;
|
|
|
|
|
2008-07-20 16:28:58 +00:00
|
|
|
|
|
|
|
#include "server.h"
|
2008-06-30 10:25:01 +00:00
|
|
|
#include "actions.h"
|
2008-07-23 19:34:19 +00:00
|
|
|
#include "plugin.h"
|
2008-06-30 10:25:01 +00:00
|
|
|
#include "request.h"
|
2008-07-18 22:38:33 +00:00
|
|
|
#include "log.h"
|
2008-06-28 18:37:28 +00:00
|
|
|
|
2008-07-20 16:28:58 +00:00
|
|
|
#include "connection.h"
|
2008-06-28 18:37:28 +00:00
|
|
|
|
2008-07-20 16:28:58 +00:00
|
|
|
#define SERVER_VERSION ((guint) 0x01FF0000)
|
2008-07-17 19:39:29 +00:00
|
|
|
|
2008-06-24 19:19:20 +00:00
|
|
|
#endif
|