lokinet/llarp/routing/path_latency_message.cpp

55 lines
1.3 KiB
C++
Raw Permalink Normal View History

#include "path_latency_message.hpp"
2019-06-15 14:55:14 +00:00
#include "handler.hpp"
#include <llarp/util/bencode.hpp>
2019-06-15 14:55:14 +00:00
namespace llarp
{
namespace routing
{
2019-07-30 23:42:13 +00:00
PathLatencyMessage::PathLatencyMessage() = default;
2019-06-15 14:55:14 +00:00
bool
PathLatencyMessage::DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* val)
2019-06-15 14:55:14 +00:00
{
bool read = false;
if (!BEncodeMaybeReadDictInt("L", L, read, key, val))
2019-06-15 14:55:14 +00:00
return false;
if (!BEncodeMaybeReadDictInt("S", S, read, key, val))
2019-06-15 14:55:14 +00:00
return false;
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
{
if (!bencode_start_dict(buf))
2019-06-15 14:55:14 +00:00
return false;
if (!BEncodeWriteDictMsgType(buf, "A", "L"))
2019-06-15 14:55:14 +00:00
return false;
if (L)
2019-06-15 14:55:14 +00:00
{
if (!BEncodeWriteDictInt("L", L, buf))
2019-06-15 14:55:14 +00:00
return false;
}
if (T)
2019-06-15 14:55:14 +00:00
{
if (!BEncodeWriteDictInt("T", T, buf))
2019-06-15 14:55:14 +00:00
return false;
}
if (!BEncodeWriteDictInt("S", S, buf))
2019-06-15 14:55:14 +00:00
return false;
return bencode_end(buf);
}
bool
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