mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
36 lines
667 B
C++
36 lines
667 B
C++
#ifndef LLARP_MESSAGES_PATH_LATENCY_HPP
|
|
#define LLARP_MESSAGES_PATH_LATENCY_HPP
|
|
|
|
#include <routing/message.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace routing
|
|
{
|
|
struct PathLatencyMessage final : public IMessage
|
|
{
|
|
uint64_t T = 0;
|
|
uint64_t L = 0;
|
|
PathLatencyMessage();
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const override;
|
|
|
|
bool
|
|
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* val) override;
|
|
|
|
void
|
|
Clear() override
|
|
{
|
|
T = 0;
|
|
L = 0;
|
|
}
|
|
|
|
bool
|
|
HandleMessage(IMessageHandler* h, AbstractRouter* r) const override;
|
|
};
|
|
} // namespace routing
|
|
} // namespace llarp
|
|
|
|
#endif
|