mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
49 lines
964 B
C++
49 lines
964 B
C++
#ifndef LLARP_MESSAGES_PATH_TRANSFER_HPP
|
|
#define LLARP_MESSAGES_PATH_TRANSFER_HPP
|
|
|
|
#include <crypto.hpp>
|
|
#include <encrypted.hpp>
|
|
#include <routing/message.hpp>
|
|
#include <service/protocol.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace routing
|
|
{
|
|
struct PathTransferMessage final : public IMessage
|
|
{
|
|
PathID_t P;
|
|
service::ProtocolFrame T;
|
|
TunnelNonce Y;
|
|
|
|
PathTransferMessage();
|
|
PathTransferMessage(const service::ProtocolFrame& f, const PathID_t& p)
|
|
: P(p), T(f)
|
|
{
|
|
Y.Randomize();
|
|
}
|
|
~PathTransferMessage();
|
|
|
|
bool
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* val) override;
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const override;
|
|
|
|
bool
|
|
HandleMessage(IMessageHandler*, llarp::Router* r) const override;
|
|
|
|
void
|
|
Clear() override
|
|
{
|
|
P.Zero();
|
|
T.Clear();
|
|
Y.Zero();
|
|
}
|
|
};
|
|
|
|
} // namespace routing
|
|
} // namespace llarp
|
|
|
|
#endif
|