mirror of
https://github.com/lxsang/ant-http
synced 2024-11-16 00:28:21 +01:00
12 lines
204 B
C
12 lines
204 B
C
|
#define CONFIG "config.ini"
|
||
|
|
||
|
typedef struct {
|
||
|
int port;
|
||
|
char *plugins_dir;
|
||
|
char *plugins_ext;
|
||
|
char *db_path;
|
||
|
char* htdocs;
|
||
|
char* tmpdir;
|
||
|
}config_t;
|
||
|
|
||
|
extern config_t server_config;
|