lokinet/llarp/messages/path_confirm.hpp

38 lines
776 B
C++
Raw Normal View History

2018-06-22 00:25:30 +00:00
#ifndef LLARP_MESSAGE_PATH_CONFIRM_HPP
#define LLARP_MESSAGE_PATH_CONFIRM_HPP
2018-12-12 02:04:32 +00:00
#include <routing/message.hpp>
2018-06-22 00:25:30 +00:00
namespace llarp
{
namespace routing
{
struct PathConfirmMessage final : public IMessage
2018-06-22 00:25:30 +00:00
{
uint64_t pathLifetime;
uint64_t pathCreated;
PathConfirmMessage();
2018-06-22 00:25:30 +00:00
PathConfirmMessage(uint64_t lifetime);
~PathConfirmMessage(){};
bool
BEncode(llarp_buffer_t* buf) const override;
2018-06-22 00:25:30 +00:00
bool
DecodeKey(const llarp_buffer_t &key, llarp_buffer_t* val) override;
2018-06-22 00:25:30 +00:00
bool
HandleMessage(IMessageHandler* h, llarp::Router* r) const override;
void
Clear() override
{
pathLifetime = 0;
pathCreated = 0;
};
2018-06-22 00:25:30 +00:00
};
} // namespace routing
} // namespace llarp
#endif