mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
38 lines
777 B
C++
38 lines
777 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, AbstractRouter* r) const override;
|
|
|
|
void
|
|
Clear() override
|
|
{
|
|
pathLifetime = 0;
|
|
pathCreated = 0;
|
|
};
|
|
};
|
|
} // namespace routing
|
|
} // namespace llarp
|
|
|
|
#endif
|