mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-17 15:25:35 +00:00
273270916e
This commit reflects changes to clang-format rules. Unfortunately, these rule changes create a massive change to the codebase, which causes an apparent rewrite of git history. Git blame's --ignore-rev flag can be used to ignore this commit when attempting to `git blame` some code.
29 lines
572 B
C++
29 lines
572 B
C++
#ifndef LLARP_DHT_MESSAGES_CONSENSUS_HPP
|
|
#define LLARP_DHT_MESSAGES_CONSENSUS_HPP
|
|
#include <dht/message.hpp>
|
|
#include <router_version.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
namespace dht
|
|
{
|
|
struct ConsensusMessage
|
|
{
|
|
/// H
|
|
ShortHash m_Hash;
|
|
/// K
|
|
std::vector<RouterID> m_Keys;
|
|
/// N
|
|
uint64_t m_NumberOfEntries;
|
|
/// O
|
|
uint64_t m_EntryOffset;
|
|
/// T
|
|
uint64_t m_TxID;
|
|
/// U
|
|
llarp_time_t m_NextUpdateRequired;
|
|
/// V
|
|
RouterVersion m_RotuerVersion;
|
|
};
|
|
} // namespace dht
|
|
} // namespace llarp
|