You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/include/llarp/messages/path_transfer.hpp

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