lokinet/llarp/config.hpp

33 lines
482 B
C++
Raw Normal View History

2018-01-25 16:24:33 +00:00
#ifndef LIBLLARP_CONFIG_HPP
#define LIBLLARP_CONFIG_HPP
2018-04-05 14:38:22 +00:00
#include <list>
2017-11-28 14:05:31 +00:00
#include <string>
2018-01-25 16:24:33 +00:00
#include <llarp/config.h>
2017-11-28 14:05:31 +00:00
namespace llarp
{
struct Config
{
typedef std::list< std::pair< std::string, std::string > > section_t;
2017-11-28 14:05:31 +00:00
section_t router;
section_t network;
section_t netdb;
section_t iwp_links;
section_t connect;
2017-11-28 14:05:31 +00:00
bool
Load(const char *fname);
};
2018-02-01 13:21:00 +00:00
} // namespace llarp
2017-11-28 14:05:31 +00:00
extern "C" {
struct llarp_config
{
2018-01-29 14:27:24 +00:00
llarp::Config impl;
};
2017-11-28 14:05:31 +00:00
}
#endif