mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
273270916e
This commit reflects changes to clang-format rules. Unfortunately, these rule changes create a massive change to the codebase, which causes an apparent rewrite of git history. Git blame's --ignore-rev flag can be used to ignore this commit when attempting to `git blame` some code.
40 lines
848 B
C++
40 lines
848 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
|
|
{
|
|
llarp_time_t pathLifetime = 0s;
|
|
llarp_time_t pathCreated = 0s;
|
|
|
|
PathConfirmMessage() = default;
|
|
PathConfirmMessage(llarp_time_t lifetime);
|
|
~PathConfirmMessage() override = default;
|
|
|
|
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 = 0s;
|
|
pathCreated = 0s;
|
|
version = 0;
|
|
}
|
|
};
|
|
} // namespace routing
|
|
} // namespace llarp
|
|
|
|
#endif
|