lokinet/include/llarp/config.h

49 lines
988 B
C
Raw Normal View History

2018-01-25 16:24:33 +00:00
#ifndef LLARP_CONFIG_H_
#define LLARP_CONFIG_H_
2018-05-25 09:17:08 +00:00
/**
* config.h
*
* library configuration utilties
*/
2018-01-25 16:24:33 +00:00
#ifdef __cplusplus
extern "C" {
#endif
2018-01-29 14:27:24 +00:00
struct llarp_config;
2018-01-25 16:24:33 +00:00
2018-05-25 09:17:08 +00:00
/// allocate config
void
llarp_new_config(struct llarp_config **conf);
2018-05-25 09:17:08 +00:00
/// deallocate config
void
llarp_free_config(struct llarp_config **conf);
2018-01-25 16:24:33 +00:00
2018-05-25 09:17:08 +00:00
/// @brief return -1 on fail otherwiwse 0
int
llarp_load_config(struct llarp_config *conf, const char *fname);
2018-01-29 14:27:24 +00:00
2018-05-25 09:17:08 +00:00
/// config iterator configuration
struct llarp_config_iterator
{
2018-05-25 09:17:08 +00:00
/// a customizable pointer to pass data to iteration functor
2018-01-29 14:27:24 +00:00
void *user;
2018-05-25 09:17:08 +00:00
/// set by llarp_config_iter
2018-01-29 14:27:24 +00:00
struct llarp_config *conf;
2018-05-25 09:17:08 +00:00
/// visit (self, section, key, value)
2018-01-29 14:27:24 +00:00
void (*visit)(struct llarp_config_iterator *, const char *, const char *,
const char *);
};
2018-05-25 09:17:08 +00:00
/// iterator over "conf" and call visit functor defined in "iter"
void
llarp_config_iter(struct llarp_config *conf,
struct llarp_config_iterator *iter);
2018-01-25 16:24:33 +00:00
#ifdef __cplusplus
}
#endif
#endif