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