mirror of
https://github.com/lxsang/ant-http
synced 2024-11-18 01:08:21 +01:00
14 lines
258 B
C
14 lines
258 B
C
#define CONFIG "config.ini"
|
|
#include "plugins/dictionary.h"
|
|
|
|
typedef struct {
|
|
int port;
|
|
char *plugins_dir;
|
|
char *plugins_ext;
|
|
char *db_path;
|
|
char* htdocs;
|
|
char* tmpdir;
|
|
dictionary rules;
|
|
}config_t;
|
|
|
|
extern config_t server_config;
|