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.
14 lines
440 B
14 lines
440 B
#ifndef _LIGHTTPD_ANGEL_CONIG_PARSER_H_ |
|
#define _LIGHTTPD_ANGEL_CONIG_PARSER_H_ |
|
|
|
/* error handling */ |
|
#define LI_ANGEL_CONFIG_PARSER_ERROR li_angel_config_parser_error_quark() |
|
LI_API GQuark li_angel_config_parser_error_quark(); |
|
|
|
typedef enum { |
|
LI_ANGEL_CONFIG_PARSER_ERROR_PARSE, /* parse error */ |
|
} liAngelConfigParserError; |
|
|
|
LI_API gboolean li_angel_config_parse_file(liServer *srv, const gchar *filename, GError **err); |
|
|
|
#endif
|
|
|