mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
49 lines
970 B
C++
49 lines
970 B
C++
#ifndef LLARP_CONFIG_HPP
|
|
#define LLARP_CONFIG_HPP
|
|
|
|
#include <functional>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
struct Config
|
|
{
|
|
using section_t = std::vector< std::pair< std::string, std::string > >;
|
|
|
|
section_t router;
|
|
section_t network;
|
|
section_t netdb;
|
|
section_t dns;
|
|
section_t iwp_links;
|
|
section_t connect;
|
|
section_t services;
|
|
section_t system;
|
|
section_t api;
|
|
section_t lokid;
|
|
section_t bootstrap;
|
|
|
|
bool
|
|
Load(const char *fname);
|
|
|
|
using Visitor = std::function< void(const char *section, const char *key,
|
|
const char *val) >;
|
|
|
|
void
|
|
visit(const Visitor &visitor);
|
|
};
|
|
|
|
} // namespace llarp
|
|
|
|
void
|
|
llarp_generic_ensure_config(std::ofstream &f, std::string basepath);
|
|
|
|
void
|
|
llarp_ensure_router_config(std::ofstream &f, std::string basepath);
|
|
|
|
bool
|
|
llarp_ensure_client_config(std::ofstream &f, std::string basepath);
|
|
|
|
#endif
|