1
0
mirror of https://github.com/lxsang/ant-http synced 2024-07-09 23:49:47 +02:00
ant-http/config.h

14 lines
258 B
C
Raw Normal View History

2015-10-22 11:39:11 +02:00
#define CONFIG "config.ini"
2018-02-03 18:50:07 +01:00
#include "plugins/dictionary.h"
2015-10-22 11:39:11 +02:00
typedef struct {
int port;
char *plugins_dir;
char *plugins_ext;
char *db_path;
char* htdocs;
char* tmpdir;
2018-02-03 18:50:07 +01:00
dictionary rules;
2015-10-22 11:39:11 +02:00
}config_t;
extern config_t server_config;