mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
29 lines
782 B
C++
29 lines
782 B
C++
#include <service/config.hpp>
|
|
|
|
#include <util/ini.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace service
|
|
{
|
|
bool
|
|
Config::Load(const std::string& fname)
|
|
{
|
|
ConfigParser parser;
|
|
if(!parser.LoadFile(fname.c_str()))
|
|
return false;
|
|
parser.IterAll([&](const ConfigParser::String_t& name,
|
|
const ConfigParser::Section_t& section) {
|
|
Config::section_t values;
|
|
values.first.assign(name.begin(), name.end());
|
|
for(const auto& item : section)
|
|
values.second.emplace_back(string_view_string(item.first),
|
|
string_view_string(item.second));
|
|
services.emplace_back(values);
|
|
});
|
|
return services.size() > 0;
|
|
}
|
|
|
|
} // namespace service
|
|
} // namespace llarp
|