2008-08-08 16:51:27 +00:00
|
|
|
#ifndef _LIGHTTPD_PLUGIN_CORE_H_
|
|
|
|
#define _LIGHTTPD_PLUGIN_CORE_H_
|
|
|
|
|
|
|
|
enum core_options_t {
|
|
|
|
CORE_OPTION_DEBUG_REQUEST_HANDLING = 0,
|
|
|
|
|
2008-08-13 17:57:19 +00:00
|
|
|
CORE_OPTION_LOG_TARGET = 1,
|
|
|
|
CORE_OPTION_LOG_LEVEL = 2,
|
|
|
|
|
2008-08-15 15:17:04 +00:00
|
|
|
CORE_OPTION_STATIC_FILE_EXCLUDE = 3,
|
|
|
|
|
|
|
|
CORE_OPTION_SERVER_TAG = 4
|
2008-08-08 16:51:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* the core plugin always has base index 0, as it is the first plugin loaded */
|
|
|
|
#define CORE_OPTION(idx) _CORE_OPTION(con, idx)
|
|
|
|
#define _CORE_OPTION(con, idx) _OPTION_ABS(con, idx)
|
|
|
|
|
|
|
|
#endif
|