mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-17 15:25:35 +00:00
28 lines
416 B
C++
28 lines
416 B
C++
#ifndef LIBLLARP_CONFIG_HPP
|
|
#define LIBLLARP_CONFIG_HPP
|
|
#include <map>
|
|
#include <string>
|
|
|
|
#include <llarp/config.h>
|
|
|
|
namespace llarp {
|
|
struct Config {
|
|
typedef std::map<std::string, std::string> section_t;
|
|
|
|
section_t router;
|
|
section_t network;
|
|
section_t netdb;
|
|
section_t links;
|
|
|
|
bool Load(const char *fname);
|
|
};
|
|
} // namespace llarp
|
|
|
|
extern "C" {
|
|
struct llarp_config {
|
|
llarp::Config impl;
|
|
};
|
|
}
|
|
|
|
#endif
|