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.
29 lines
562 B
29 lines
562 B
15 years ago
|
#ifndef _LIGHTTPD_PLUGIN_CORE_H_
|
||
|
#define _LIGHTTPD_PLUGIN_CORE_H_
|
||
|
|
||
14 years ago
|
#include <lighttpd/base.h>
|
||
14 years ago
|
|
||
15 years ago
|
enum core_options_t {
|
||
|
CORE_OPTION_DEBUG_REQUEST_HANDLING = 0,
|
||
|
|
||
![]()
15 years ago
|
CORE_OPTION_LOG_TS_FORMAT,
|
||
|
CORE_OPTION_LOG,
|
||
![]()
15 years ago
|
|
||
![]()
15 years ago
|
CORE_OPTION_STATIC_FILE_EXCLUDE,
|
||
![]()
15 years ago
|
|
||
![]()
15 years ago
|
CORE_OPTION_SERVER_TAG,
|
||
![]()
15 years ago
|
CORE_OPTION_MAX_KEEP_ALIVE_IDLE,
|
||
|
|
||
![]()
15 years ago
|
CORE_OPTION_MIME_TYPES,
|
||
|
|
||
![]()
14 years ago
|
CORE_OPTION_DOCROOT,
|
||
|
|
||
|
CORE_OPTION_THROTTLE
|
||
15 years ago
|
};
|
||
|
|
||
|
/* the core plugin always has base index 0, as it is the first plugin loaded */
|
||
14 years ago
|
#define CORE_OPTION(idx) _CORE_OPTION(vr, idx)
|
||
|
#define _CORE_OPTION(vr, idx) _OPTION_ABS(vr, idx)
|
||
15 years ago
|
|
||
|
#endif
|