2018-06-22 00:25:30 +00:00
|
|
|
#ifndef LLARP_MESSAGE_PATH_CONFIRM_HPP
|
|
|
|
#define LLARP_MESSAGE_PATH_CONFIRM_HPP
|
|
|
|
|
2018-06-22 13:59:28 +00:00
|
|
|
#include <llarp/routing/message.hpp>
|
2018-06-22 00:25:30 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace routing
|
|
|
|
{
|
|
|
|
struct PathConfirmMessage : public IMessage
|
|
|
|
{
|
|
|
|
uint64_t pathLifetime;
|
|
|
|
uint64_t pathCreated;
|
2018-06-22 13:59:28 +00:00
|
|
|
PathConfirmMessage();
|
2018-06-22 00:25:30 +00:00
|
|
|
PathConfirmMessage(uint64_t lifetime);
|
|
|
|
~PathConfirmMessage(){};
|
|
|
|
|
|
|
|
bool
|
|
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
|
2018-06-22 13:59:28 +00:00
|
|
|
bool
|
|
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* val);
|
|
|
|
|
2018-06-22 00:25:30 +00:00
|
|
|
bool
|
2018-06-26 16:23:43 +00:00
|
|
|
HandleMessage(IMessageHandler* h, llarp_router* r) const;
|
2018-06-22 00:25:30 +00:00
|
|
|
};
|
|
|
|
} // namespace routing
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|