14 lines
276 B
C
Raw Normal View History

2025-11-29 01:49:14 +01:00
#ifndef RPROXY_CONFIG_H
#define RPROXY_CONFIG_H
#include "types.h"
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);
#endif