udphole

Basic UDP wormhole proxy
git clone git://git.finwo.net/app/udphole
Log | Files | Refs | README | LICENSE

config.h (326B)


      1 #ifndef UDPHOLE_CONFIG_H
      2 #define UDPHOLE_CONFIG_H
      3 
      4 #include "common/resp.h"
      5 
      6 extern resp_object *pending_cfg;
      7 
      8 void        config_init(void);
      9 int         config_load(resp_object *cfg, const char *path);
     10 int         config_reload(void);
     11 void        config_set_path(const char *path);
     12 const char *config_get_path(void);
     13 
     14 #endif