#ifndef LLARP_BOOTSTRAP_HPP #define LLARP_BOOTSTRAP_HPP #include #include namespace llarp { struct BootstrapList final : public std::set { bool BDecode(llarp_buffer_t* buf); bool BEncode(llarp_buffer_t* buf) const; void Clear(); }; } // namespace llarp #endif