lokinet/llarp/messages/path_confirm.hpp

40 lines
789 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()
{
}
2018-06-22 00:25:30 +00:00
bool
BEncode(llarp_buffer_t* buf) const override;
2018-06-22 00:25:30 +00:00
bool
2019-02-05 00:41:33 +00:00
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* val) override;
2018-06-22 00:25:30 +00:00
bool
HandleMessage(IMessageHandler* h, AbstractRouter* r) const override;
void
Clear() override
{
pathLifetime = 0;
pathCreated = 0;
}
2018-06-22 00:25:30 +00:00
};
} // namespace routing
} // namespace llarp
#endif