mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
32 lines
738 B
C
32 lines
738 B
C
#ifndef LLARP_CONFIG_H_
|
|
#define LLARP_CONFIG_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct llarp_config;
|
|
|
|
void llarp_new_config(struct llarp_config **conf);
|
|
void llarp_free_config(struct llarp_config **conf);
|
|
|
|
/** @brief return -1 on fail otherwiwse 0 */
|
|
int llarp_load_config(struct llarp_config *conf, const char *fname);
|
|
|
|
struct llarp_config_iterator {
|
|
void *user;
|
|
/** set by llarp_config_iter */
|
|
struct llarp_config *conf;
|
|
/** visit (self, section, key, value) */
|
|
void (*visit)(struct llarp_config_iterator *, const char *, const char *,
|
|
const char *);
|
|
};
|
|
|
|
void llarp_config_iter(struct llarp_config *conf,
|
|
struct llarp_config_iterator *iter);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|