core-legacy/include/config.h
Tobias Reisinger a78815cb32 add: endpoint /tags
fix: leaks from config (now using static length for config strings)
2020-06-13 19:21:32 +02:00

45 lines
838 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 enum
{
LOG_LEVEL_TRACE = 5,
LOG_LEVEL_DEBUG = 4,
LOG_LEVEL_INFO = 3,
LOG_LEVEL_WARN = 2,
LOG_LEVEL_ERROR = 1,
LOG_LEVEL_FATAL = 0,
} log_level_t;
typedef struct
{
char *file;
char database[256];
log_level_t log_level;
run_type_t run_type;
char server_port[6];
uint16_t discovery_port;
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 */