lokinet/llarp/routing/path_latency_message.hpp

34 lines
605 B
C++
Raw Normal View History

#pragma once
2018-06-23 00:00:44 +00:00
#include "message.hpp"
2018-06-23 00:00:44 +00:00
namespace llarp
{
namespace routing
{
struct PathLatencyMessage final : public IMessage
2018-06-23 00:00:44 +00:00
{
uint64_t T = 0;
uint64_t L = 0;
PathLatencyMessage();
bool
BEncode(llarp_buffer_t* buf) const override;
2018-06-23 00:00:44 +00:00
bool
2019-02-05 00:41:33 +00:00
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* val) override;
2018-06-23 00:00:44 +00:00
void
Clear() override
{
T = 0;
L = 0;
version = 0;
}
2018-06-23 00:00:44 +00:00
bool
HandleMessage(IMessageHandler* h, AbstractRouter* r) const override;
2018-06-23 00:00:44 +00:00
};
} // namespace routing
} // namespace llarp