#ifndef LIBLLARP_CONFIG_HPP #define LIBLLARP_CONFIG_HPP #include #include #include namespace llarp { struct Config { typedef std::list > section_t; section_t router; section_t network; section_t netdb; section_t iwp_links; section_t dtls_links; bool Load(const char *fname); }; } // namespace llarp extern "C" { struct llarp_config { llarp::Config impl; }; } #endif