mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
36 lines
755 B
C++
36 lines
755 B
C++
#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>
|
|
#include <llarp/service/protocol.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace routing
|
|
{
|
|
struct PathTransferMessage : public IMessage
|
|
{
|
|
PathID_t P;
|
|
service::ProtocolFrame* T = nullptr;
|
|
uint64_t V = 0;
|
|
TunnelNonce Y;
|
|
|
|
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;
|
|
};
|
|
|
|
} // namespace routing
|
|
} // namespace llarp
|
|
|
|
#endif |