mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
53 lines
1.0 KiB
C++
53 lines
1.0 KiB
C++
#ifndef LLARP_MESSAGES_RELAY_HPP
|
|
#define LLARP_MESSAGES_RELAY_HPP
|
|
#include <llarp/link_message.hpp>
|
|
|
|
#include <llarp/crypto.hpp>
|
|
#include <llarp/encrypted.hpp>
|
|
#include <llarp/path_types.hpp>
|
|
#include <vector>
|
|
|
|
namespace llarp
|
|
{
|
|
struct RelayUpstreamMessage : public ILinkMessage
|
|
{
|
|
PathID_t pathid;
|
|
Encrypted X;
|
|
TunnelNonce Y;
|
|
|
|
RelayUpstreamMessage();
|
|
RelayUpstreamMessage(const RouterID& from);
|
|
~RelayUpstreamMessage();
|
|
|
|
bool
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* buf);
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
bool
|
|
HandleMessage(llarp_router* router) const;
|
|
};
|
|
|
|
struct RelayDownstreamMessage : public ILinkMessage
|
|
{
|
|
PathID_t pathid;
|
|
Encrypted X;
|
|
TunnelNonce Y;
|
|
RelayDownstreamMessage();
|
|
RelayDownstreamMessage(const RouterID& from);
|
|
~RelayDownstreamMessage();
|
|
|
|
bool
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t* buf);
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
bool
|
|
HandleMessage(llarp_router* router) const;
|
|
};
|
|
} // namespace llarp
|
|
|
|
#endif
|