40 lines
763 B
C
40 lines
763 B
C
#ifndef CORE_CONFIG_H
|
|
#define CORE_CONFIG_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <mongoose.h>
|
|
#include <confini.h>
|
|
|
|
typedef enum
|
|
{
|
|
RUN_TYPE_START,
|
|
RUN_TYPE_INVALID,
|
|
} run_type_t;
|
|
|
|
typedef struct
|
|
{
|
|
char *file;
|
|
char database[256];
|
|
char user[256];
|
|
char group[256];
|
|
int log_level;
|
|
FILE *log_file;
|
|
run_type_t run_type;
|
|
uint16_t server_port;
|
|
uint16_t discovery_port;
|
|
uint16_t mqtt_port;
|
|
char content_dir[1024];
|
|
char not_found_file[256];
|
|
char not_found_file_type[256];
|
|
char not_found_content[256];
|
|
char not_found_content_type[256];
|
|
struct mg_serve_http_opts http_server_opts;
|
|
} config_t;
|
|
|
|
extern config_t global_config;
|
|
|
|
int
|
|
config_load(IniDispatch *disp, void *config_void);
|
|
|
|
#endif /* CORE_CONFIG_H */
|