mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-11 07:10:36 +00:00
18e1272c76
* adds next and last gossip datetimes * adds a few things for time points, like ostream operator overloads for time point
50 lines
1009 B
C++
50 lines
1009 B
C++
#pragma once
|
|
|
|
#include <llarp/util/decaying_hashset.hpp>
|
|
#include "i_gossiper.hpp"
|
|
#include "i_outbound_message_handler.hpp"
|
|
#include <llarp/link/i_link_manager.hpp>
|
|
#include "abstractrouter.hpp"
|
|
|
|
namespace llarp
|
|
{
|
|
struct RCGossiper : public I_RCGossiper
|
|
{
|
|
RCGossiper();
|
|
|
|
~RCGossiper() override = default;
|
|
|
|
bool
|
|
GossipRC(const RouterContact& rc) override;
|
|
|
|
void
|
|
Decay(Time_t now) override;
|
|
|
|
bool
|
|
ShouldGossipOurRC(Time_t now) const override;
|
|
|
|
bool
|
|
IsOurRC(const RouterContact& rc) const override;
|
|
|
|
void
|
|
Init(ILinkManager*, const RouterID&, AbstractRouter*);
|
|
|
|
void
|
|
Forget(const RouterID& router) override;
|
|
|
|
TimePoint_t
|
|
NextGossipAt() const override;
|
|
|
|
std::optional<TimePoint_t>
|
|
LastGossipAt() const override;
|
|
|
|
private:
|
|
RouterID m_OurRouterID;
|
|
Time_t m_LastGossipedOurRC = 0s;
|
|
ILinkManager* m_LinkManager = nullptr;
|
|
util::DecayingHashSet<RouterID> m_Filter;
|
|
|
|
AbstractRouter* m_router;
|
|
};
|
|
} // namespace llarp
|