2018-06-26 16:23:43 +00:00
|
|
|
#ifndef LLARP_MESSAGES_PATH_TRANSFER_HPP
|
|
|
|
#define LLARP_MESSAGES_PATH_TRANSFER_HPP
|
|
|
|
|
|
|
|
#include <llarp/crypto.hpp>
|
|
|
|
#include <llarp/encrypted.hpp>
|
|
|
|
#include <llarp/routing/message.hpp>
|
2018-07-22 23:14:29 +00:00
|
|
|
#include <llarp/service/protocol.hpp>
|
2018-06-26 16:23:43 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
namespace routing
|
|
|
|
{
|
|
|
|
struct PathTransferMessage : public IMessage
|
|
|
|
{
|
|
|
|
PathID_t P;
|
2018-07-22 23:14:29 +00:00
|
|
|
service::ProtocolFrame* T = nullptr;
|
|
|
|
uint64_t V = 0;
|
2018-06-26 16:23:43 +00:00
|
|
|
TunnelNonce Y;
|
2018-06-29 14:25:09 +00:00
|
|
|
|
|
|
|
PathTransferMessage();
|
|
|
|
~PathTransferMessage();
|
|
|
|
|
|
|
|
bool
|
|
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* val);
|
|
|
|
|
|
|
|
bool
|
|
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
|
|
|
|
bool
|
|
|
|
HandleMessage(IMessageHandler*, llarp_router* r) const;
|
2018-06-26 16:23:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace routing
|
|
|
|
} // namespace llarp
|
|
|
|
|
|
|
|
#endif
|