mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-07 15:20:31 +00:00
54 lines
1.1 KiB
C++
54 lines
1.1 KiB
C++
#ifndef LIBLLARP_CONFIG_HPP
|
|
#define LIBLLARP_CONFIG_HPP
|
|
#include <list>
|
|
#include <string>
|
|
|
|
#include <llarp/config.h>
|
|
|
|
namespace llarp
|
|
{
|
|
struct Config
|
|
{
|
|
typedef std::list< std::pair< std::string, std::string > > section_t;
|
|
|
|
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;
|
|
|
|
bool
|
|
Load(const char *fname);
|
|
};
|
|
|
|
} // namespace llarp
|
|
|
|
struct llarp_config
|
|
{
|
|
llarp::Config impl;
|
|
};
|
|
|
|
/// ensure configuration exists
|
|
/// populate with defaults
|
|
/// return if this succeeded
|
|
/// if overwrite is true then overwrite old config file
|
|
/// if basedir is not nullptr then use basedir as an absolute
|
|
/// base path for all files in config
|
|
bool
|
|
llarp_ensure_config(const char *fname, const char *basedir = nullptr,
|
|
bool overwrite = false, bool asRouter = true);
|
|
|
|
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
|