mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
7caa87862e
All #ifndef guards on headers have been removed, I think, in favor of #pragma once Headers are now included as `#include "filename"` if the included file resides in the same directory as the file including it, or any subdirectory therein. Otherwise they are included as `#include <project/top/dir/relative/path/filename>` The above does not include system/os headers.
88 lines
1.6 KiB
C++
88 lines
1.6 KiB
C++
#pragma once
|
|
|
|
#include <llarp/crypto/encrypted_frame.hpp>
|
|
#include <llarp/crypto/types.hpp>
|
|
#include "link_message.hpp"
|
|
#include <llarp/path/path_types.hpp>
|
|
#include <llarp/pow.hpp>
|
|
|
|
#include <array>
|
|
#include <memory>
|
|
#include <utility>
|
|
|
|
namespace llarp
|
|
{
|
|
// forward declare
|
|
struct AbstractRouter;
|
|
namespace path
|
|
{
|
|
struct PathContext;
|
|
}
|
|
|
|
struct LR_CommitRecord
|
|
{
|
|
PubKey commkey;
|
|
RouterID nextHop;
|
|
TunnelNonce tunnelNonce;
|
|
PathID_t txid, rxid;
|
|
|
|
std::unique_ptr<RouterContact> nextRC;
|
|
std::unique_ptr<PoW> work;
|
|
uint64_t version = 0;
|
|
llarp_time_t lifetime = 0s;
|
|
|
|
bool
|
|
BDecode(llarp_buffer_t* buf);
|
|
|
|
bool
|
|
BEncode(llarp_buffer_t* buf) const;
|
|
|
|
bool
|
|
operator==(const LR_CommitRecord& other) const;
|
|
|
|
private:
|
|
bool
|
|
OnKey(llarp_buffer_t* buffer, llarp_buffer_t* key);
|
|
};
|
|
|
|
struct LR_CommitMessage : public ILinkMessage
|
|
{
|
|
std::array<EncryptedFrame, 8> frames;
|
|
|
|
LR_CommitMessage(std::array<EncryptedFrame, 8> _frames)
|
|
: ILinkMessage(), frames(std::move(_frames))
|
|
{}
|
|
|
|
LR_CommitMessage() = default;
|
|
|
|
~LR_CommitMessage() override = default;
|
|
|
|
void
|
|
Clear() override;
|
|
|
|
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;
|
|
|
|
bool
|
|
AsyncDecrypt(llarp::path::PathContext* context) const;
|
|
|
|
const char*
|
|
Name() const override
|
|
{
|
|
return "RelayCommit";
|
|
}
|
|
|
|
virtual uint16_t
|
|
Priority() const override
|
|
{
|
|
return 5;
|
|
}
|
|
};
|
|
} // namespace llarp
|