#pragma once #include "router_contact.hpp" #include #include #include namespace llarp { struct BootstrapList final : public std::set { bool bt_decode(std::string_view buf); std::string_view bt_encode() const; void read_from_file(const fs::path& fpath); void clear_list() { clear(); } }; std::unordered_map load_bootstrap_fallbacks(); } // namespace llarp