2021-03-09 22:24:35 +00:00
|
|
|
#include "bootstrap.hpp"
|
|
|
|
#include "util/bencode.hpp"
|
2019-12-06 17:32:46 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
void
|
|
|
|
BootstrapList::Clear()
|
|
|
|
{
|
|
|
|
clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
BootstrapList::BDecode(llarp_buffer_t* buf)
|
|
|
|
{
|
|
|
|
return bencode_read_list(
|
|
|
|
[&](llarp_buffer_t* b, bool more) -> bool {
|
2020-04-07 18:38:56 +00:00
|
|
|
if (more)
|
2019-12-06 17:32:46 +00:00
|
|
|
{
|
|
|
|
RouterContact rc;
|
2020-04-07 18:38:56 +00:00
|
|
|
if (not rc.BDecode(b))
|
2019-12-06 17:32:46 +00:00
|
|
|
return false;
|
|
|
|
emplace(std::move(rc));
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
BootstrapList::BEncode(llarp_buffer_t* buf) const
|
|
|
|
{
|
|
|
|
return BEncodeWriteList(begin(), end(), buf);
|
|
|
|
}
|
|
|
|
} // namespace llarp
|