lokinet/include/llarp/messages/path_latency.hpp

29 lines
583 B
C++
Raw Normal View History

2018-06-23 00:00:44 +00:00
#ifndef LLARP_MESSAGES_PATH_LATENCY_HPP
#define LLARP_MESSAGES_PATH_LATENCY_HPP
#include <llarp/routing/message.hpp>
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
DecodeKey(llarp_buffer_t key, llarp_buffer_t* val) override;
2018-06-23 00:00:44 +00:00
bool
HandleMessage(IMessageHandler* h, llarp_router* r) const override;
2018-06-23 00:00:44 +00:00
};
} // namespace routing
} // namespace llarp
#endif