lokinet/llarp/config.hpp

51 lines
1016 B
C++
Raw Normal View History

2019-01-11 01:19:36 +00:00
#ifndef LLARP_CONFIG_HPP
#define LLARP_CONFIG_HPP
2019-02-11 23:40:36 +00:00
#include <functional>
2019-02-12 00:33:19 +00:00
#include <string>
#include <utility>
#include <vector>
2017-11-28 14:05:31 +00:00
namespace llarp
{
struct Config
{
2019-02-12 00:33:19 +00:00
using section_t = std::vector< std::pair< std::string, std::string > >;
2017-11-28 14:05:31 +00:00
section_t router;
section_t network;
section_t netdb;
2018-07-26 10:53:27 +00:00
section_t dns;
section_t iwp_links;
section_t connect;
2018-07-09 17:32:11 +00:00
section_t services;
2018-08-09 13:55:51 +00:00
section_t system;
2019-04-07 17:55:14 +00:00
section_t metrics;
2018-10-09 12:06:30 +00:00
section_t api;
2018-11-21 17:46:33 +00:00
section_t lokid;
section_t bootstrap;
2019-04-11 12:58:23 +00:00
section_t logging;
2017-11-28 14:05:31 +00:00
bool
Load(const char *fname);
using Visitor = std::function< void(const char *section, const char *key,
const char *val) >;
void
visit(const Visitor &visitor);
};
2018-07-09 17:32:11 +00:00
2018-02-01 13:21:00 +00:00
} // namespace llarp
2017-11-28 14:05:31 +00:00
2018-10-01 09:57:57 +00:00
void
llarp_generic_ensure_config(std::ofstream &f, std::string basepath);
void
llarp_ensure_router_config(std::ofstream &f, std::string basepath);
2018-10-01 09:57:57 +00:00
bool
llarp_ensure_client_config(std::ofstream &f, std::string basepath);
2017-11-28 14:05:31 +00:00
#endif