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

22 lines
398 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;
TunnelNonce Y;
};
} // namespace routing
} // namespace llarp
#endif