mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
18b50f4a74
* update dht docs * update other docs * start working on dht for hidden services * fix up unit tests for dht * update makefile and other build files
35 lines
678 B
C++
35 lines
678 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>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace routing
|
|
{
|
|
struct PathTransferMessage : public IMessage
|
|
{
|
|
PathID_t P;
|
|
Encrypted T;
|
|
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 |