2
0
Fork 0
lighttpd2/src/base.h

26 lines
409 B
C
Raw Normal View History

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;
#include "server.h"
2008-06-30 10:25:01 +00:00
#include "actions.h"
#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
#include "connection.h"
2008-06-28 18:37:28 +00:00
#define SERVER_VERSION ((guint) 0x01FF0000)
2008-06-24 19:19:20 +00:00
#endif