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 : public IMessage
|
|
|
|
{
|
|
|
|
uint64_t T = 0;
|
|
|
|
uint64_t L = 0;
|
|
|
|
PathLatencyMessage();
|
|
|
|
|
|
|
|
bool
|
|
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
|
|
|
|
bool
|
|
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* val);
|
|
|
|
|
|
|
|
bool
|
2018-06-26 16:23:43 +00:00
|
|
|
HandleMessage(IMessageHandler* h, llarp_router* r) const;
|
2018-06-23 00:00:44 +00:00
|
|
|
};
|
|
|
|
} // namespace routing
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|