2018-05-26 18:31:45 +00:00
|
|
|
#ifndef LLARP_RELAY_COMMIT_HPP
|
|
|
|
#define LLARP_RELAY_COMMIT_HPP
|
2018-06-12 11:57:14 +00:00
|
|
|
#include <llarp/crypto.hpp>
|
2018-06-11 13:25:10 +00:00
|
|
|
#include <llarp/encrypted_ack.hpp>
|
2018-05-26 18:31:45 +00:00
|
|
|
#include <llarp/encrypted_frame.hpp>
|
2018-06-01 14:08:54 +00:00
|
|
|
#include <llarp/link_message.hpp>
|
2018-06-10 14:05:48 +00:00
|
|
|
#include <llarp/path_types.hpp>
|
2018-06-18 22:03:50 +00:00
|
|
|
#include <llarp/pow.hpp>
|
2018-05-26 18:31:45 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
2018-06-18 22:03:50 +00:00
|
|
|
// forward declare
|
2018-06-25 15:12:08 +00:00
|
|
|
namespace path
|
|
|
|
{
|
|
|
|
struct PathContext;
|
|
|
|
}
|
2018-06-18 22:03:50 +00:00
|
|
|
|
2018-05-26 18:31:45 +00:00
|
|
|
struct LR_CommitRecord
|
|
|
|
{
|
2018-06-12 11:57:14 +00:00
|
|
|
PubKey commkey;
|
2018-06-18 22:03:50 +00:00
|
|
|
RouterID nextHop;
|
2018-06-12 11:57:14 +00:00
|
|
|
TunnelNonce tunnelNonce;
|
2018-06-22 00:25:30 +00:00
|
|
|
PathID_t txid, rxid;
|
|
|
|
|
2018-06-29 14:25:09 +00:00
|
|
|
PoW *work = nullptr;
|
|
|
|
uint64_t version = 0;
|
|
|
|
uint64_t lifetime = 0;
|
2018-05-26 18:31:45 +00:00
|
|
|
|
|
|
|
bool
|
|
|
|
BDecode(llarp_buffer_t *buf);
|
|
|
|
|
|
|
|
bool
|
2018-06-10 14:05:48 +00:00
|
|
|
BEncode(llarp_buffer_t *buf) const;
|
2018-06-12 12:49:23 +00:00
|
|
|
|
2018-06-18 22:03:50 +00:00
|
|
|
~LR_CommitRecord();
|
|
|
|
|
2018-06-21 12:55:02 +00:00
|
|
|
bool
|
|
|
|
operator==(const LR_CommitRecord &other) const;
|
|
|
|
|
2018-06-12 12:49:23 +00:00
|
|
|
private:
|
|
|
|
static bool
|
|
|
|
OnKey(dict_reader *r, llarp_buffer_t *buf);
|
2018-05-26 18:31:45 +00:00
|
|
|
};
|
|
|
|
|
2018-06-01 14:08:54 +00:00
|
|
|
struct LR_CommitMessage : public ILinkMessage
|
2018-05-26 18:31:45 +00:00
|
|
|
{
|
2018-08-30 18:48:43 +00:00
|
|
|
std::array< EncryptedFrame, 8 > frames;
|
2018-05-26 18:31:45 +00:00
|
|
|
|
2018-06-12 16:45:12 +00:00
|
|
|
LR_CommitMessage() : ILinkMessage()
|
|
|
|
{
|
|
|
|
}
|
2018-06-18 22:03:50 +00:00
|
|
|
|
2018-09-02 18:25:42 +00:00
|
|
|
LR_CommitMessage(ILinkSession *from) : ILinkMessage(from)
|
2018-06-01 14:08:54 +00:00
|
|
|
{
|
|
|
|
}
|
2018-06-12 12:49:23 +00:00
|
|
|
|
2018-06-01 14:08:54 +00:00
|
|
|
~LR_CommitMessage();
|
|
|
|
|
2018-05-26 18:31:45 +00:00
|
|
|
void
|
|
|
|
Clear();
|
|
|
|
|
|
|
|
bool
|
2018-06-01 14:08:54 +00:00
|
|
|
DecodeKey(llarp_buffer_t key, llarp_buffer_t *buf);
|
2018-05-26 18:31:45 +00:00
|
|
|
|
|
|
|
bool
|
2018-06-01 14:08:54 +00:00
|
|
|
BEncode(llarp_buffer_t *buf) const;
|
|
|
|
|
|
|
|
bool
|
|
|
|
HandleMessage(llarp_router *router) const;
|
2018-06-18 22:03:50 +00:00
|
|
|
|
|
|
|
bool
|
2018-06-25 15:12:08 +00:00
|
|
|
AsyncDecrypt(llarp::path::PathContext *context) const;
|
2018-05-26 18:31:45 +00:00
|
|
|
};
|
2018-06-18 22:03:50 +00:00
|
|
|
} // namespace llarp
|
2018-05-26 18:31:45 +00:00
|
|
|
|
|
|
|
#endif
|