lokinet/llarp/config.hpp

47 lines
809 B
C++
Raw Normal View History

2019-01-11 01:19:36 +00:00
#ifndef LLARP_CONFIG_HPP
#define LLARP_CONFIG_HPP
#include <config.h>
2018-04-05 14:38:22 +00:00
#include <list>
2017-11-28 14:05:31 +00:00
#include <string>
namespace llarp
{
struct Config
{
using section_t = std::list< 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;
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;
2017-11-28 14:05:31 +00:00
bool
Load(const char *fname);
};
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
struct llarp_config
{
2018-01-29 14:27:24 +00:00
llarp::Config impl;
};
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