lokinet/include/llarp/messages/path_transfer.hpp

41 lines
848 B
C++
Raw Normal View History

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-08-12 17:22:29 +00:00
service::ProtocolFrame T;
2018-06-26 16:23:43 +00:00
TunnelNonce Y;
PathTransferMessage();
2018-08-12 17:22:29 +00:00
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);
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