2019-06-19 22:30:07 +00:00
|
|
|
#include <routing/path_latency_message.hpp>
|
2019-06-15 14:55:14 +00:00
|
|
|
|
|
|
|
#include <routing/handler.hpp>
|
|
|
|
#include <util/bencode.hpp>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace routing
|
|
|
|
{
|
2019-07-30 23:42:13 +00:00
|
|
|
PathLatencyMessage::PathLatencyMessage() = default;
|
2019-06-15 14:55:14 +00:00
|
|
|
|
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
PathLatencyMessage::DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* val)
|
2019-06-15 14:55:14 +00:00
|
|
|
{
|
|
|
|
bool read = false;
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeMaybeReadDictInt("L", L, read, key, val))
|
2019-06-15 14:55:14 +00:00
|
|
|
return false;
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeMaybeReadDictInt("S", S, read, key, val))
|
2019-06-15 14:55:14 +00:00
|
|
|
return false;
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeMaybeReadDictInt("T", T, read, key, val))
|
2019-06-15 14:55:14 +00:00
|
|
|
return false;
|
|
|
|
return read;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
PathLatencyMessage::BEncode(llarp_buffer_t* buf) const
|
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!bencode_start_dict(buf))
|
2019-06-15 14:55:14 +00:00
|
|
|
return false;
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeWriteDictMsgType(buf, "A", "L"))
|
2019-06-15 14:55:14 +00:00
|
|
|
return false;
|
2020-04-07 18:38:56 +00:00
|
|
|
if (L)
|
2019-06-15 14:55:14 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeWriteDictInt("L", L, buf))
|
2019-06-15 14:55:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-04-07 18:38:56 +00:00
|
|
|
if (T)
|
2019-06-15 14:55:14 +00:00
|
|
|
{
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeWriteDictInt("T", T, buf))
|
2019-06-15 14:55:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
2020-04-07 18:38:56 +00:00
|
|
|
if (!BEncodeWriteDictInt("S", S, buf))
|
2019-06-15 14:55:14 +00:00
|
|
|
return false;
|
|
|
|
return bencode_end(buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
PathLatencyMessage::HandleMessage(IMessageHandler* h, AbstractRouter* r) const
|
2019-06-15 14:55:14 +00:00
|
|
|
{
|
|
|
|
return h && h->HandlePathLatencyMessage(*this, r);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace routing
|
|
|
|
} // namespace llarp
|