udphole

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

config.h (269B)


      1 #ifndef UDPHOLE_DOMAIN_CONFIG_H
      2 #define UDPHOLE_DOMAIN_CONFIG_H
      3 
      4 #include <stdint.h>
      5 
      6 #include "common/resp.h"
      7 
      8 extern resp_object *domain_cfg;
      9 
     10 void domain_config_init(void);
     11 
     12 void domain_config_free(void);
     13 
     14 resp_object *domain_config_get_cluster_nodes(void);
     15 
     16 #endif