lokinet/llarp/messages/path_confirm.hpp
2019-02-01 01:58:13 +00:00

38 lines
776 B
C++

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