the upcoming 2.0 version
https://redmine.lighttpd.net/projects/lighttpd2
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
634 B
33 lines
634 B
#ifndef _LIGHTTPD_ANGEL_BASE_H_ |
|
#define _LIGHTTPD_ANGEL_BASE_H_ |
|
|
|
#ifdef _LIGHTTPD_BASE_H_ |
|
#error Do not mix lighty with angel code |
|
#endif |
|
|
|
#include <lighttpd/settings.h> |
|
|
|
#include <lighttpd/module.h> |
|
|
|
/* angel_server.h */ |
|
|
|
struct server; |
|
typedef struct server server; |
|
|
|
struct instance; |
|
typedef struct instance instance; |
|
|
|
struct instance_conf; |
|
typedef struct instance_conf instance_conf; |
|
|
|
|
|
#include <lighttpd/angel_value.h> |
|
#include <lighttpd/angel_data.h> |
|
#include <lighttpd/angel_connection.h> |
|
#include <lighttpd/angel_log.h> |
|
#include <lighttpd/angel_plugin.h> |
|
#include <lighttpd/angel_server.h> |
|
|
|
#include <lighttpd/utils.h> |
|
|
|
#endif
|
|
|