14 lines
276 B
C
14 lines
276 B
C
|
|
#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
|