lokinet/llarp/messages/relay.hpp

71 lines
1.2 KiB
C++
Raw Normal View History

#pragma once
2018-06-08 13:12:17 +00:00
#include <llarp/crypto/encrypted.hpp>
#include <llarp/crypto/types.hpp>
#include "link_message.hpp"
#include <llarp/path/path_types.hpp>
2018-12-12 01:32:10 +00:00
2018-06-22 00:25:30 +00:00
#include <vector>
2018-06-08 13:12:17 +00:00
namespace llarp
{
struct RelayUpstreamMessage : public ILinkMessage
{
Encrypted<MAX_LINK_MSG_SIZE - 128> X;
2018-06-22 00:25:30 +00:00
TunnelNonce Y;
2018-06-08 13:12:17 +00:00
bool
2019-02-05 00:41:33 +00:00
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf) override;
2018-06-08 13:12:17 +00:00
bool
2018-12-20 16:49:05 +00:00
BEncode(llarp_buffer_t* buf) const override;
2018-06-08 13:12:17 +00:00
bool
HandleMessage(AbstractRouter* router) const override;
2018-12-20 16:49:05 +00:00
void
Clear() override;
2019-03-26 20:04:41 +00:00
const char*
Name() const override
{
return "RelayUpstream";
}
2020-01-17 16:33:37 +00:00
uint16_t
Priority() const override
{
return 0;
}
2018-06-08 13:12:17 +00:00
};
struct RelayDownstreamMessage : public ILinkMessage
{
Encrypted<MAX_LINK_MSG_SIZE - 128> X;
2018-06-22 00:25:30 +00:00
TunnelNonce Y;
2018-06-08 13:12:17 +00:00
bool
2019-02-05 00:41:33 +00:00
DecodeKey(const llarp_buffer_t& key, llarp_buffer_t* buf) override;
2018-06-08 13:12:17 +00:00
bool
2018-12-20 16:49:05 +00:00
BEncode(llarp_buffer_t* buf) const override;
2018-06-08 13:12:17 +00:00
bool
HandleMessage(AbstractRouter* router) const override;
2018-12-20 16:49:05 +00:00
void
Clear() override;
2019-03-26 20:04:41 +00:00
const char*
Name() const override
{
return "RelayDownstream";
}
2020-01-17 16:33:37 +00:00
uint16_t
Priority() const override
{
return 0;
}
2018-06-08 13:12:17 +00:00
};
2018-06-22 00:25:30 +00:00
} // namespace llarp