#ifndef RPROXY_CONFIG_H #define RPROXY_CONFIG_H #include "types.h" #define CONFIG_RELOAD_INTERVAL_SECONDS 3 extern app_config_t config; int config_load(const char *filename); void config_free(void); void config_create_default(const char *filename); route_config_t *config_find_route(const char *hostname); int config_check_file_changed(const char *filename); int config_hot_reload(const char *filename); #endif