2021-03-09 22:24:35 +00:00
|
|
|
#pragma once
|
2020-01-30 17:23:16 +00:00
|
|
|
|
2021-03-09 22:24:35 +00:00
|
|
|
#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"
|
2020-01-30 17:23:16 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
|
|
|
struct RCGossiper : public I_RCGossiper
|
|
|
|
{
|
|
|
|
RCGossiper();
|
|
|
|
|
|
|
|
~RCGossiper() override = default;
|
|
|
|
|
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
GossipRC(const RouterContact& rc) override;
|
2020-01-30 17:23:16 +00:00
|
|
|
|
|
|
|
void
|
2020-01-30 22:10:56 +00:00
|
|
|
Decay(Time_t now) override;
|
|
|
|
|
|
|
|
bool
|
|
|
|
ShouldGossipOurRC(Time_t now) const override;
|
|
|
|
|
|
|
|
bool
|
2020-04-07 18:38:56 +00:00
|
|
|
IsOurRC(const RouterContact& rc) const override;
|
2020-01-30 17:23:16 +00:00
|
|
|
|
|
|
|
void
|
2020-04-07 18:38:56 +00:00
|
|
|
Init(ILinkManager*, const RouterID&, AbstractRouter*);
|
2020-01-30 17:23:16 +00:00
|
|
|
|
|
|
|
private:
|
2020-01-30 22:10:56 +00:00
|
|
|
RouterID m_OurRouterID;
|
2020-04-07 18:38:56 +00:00
|
|
|
Time_t m_LastGossipedOurRC = 0s;
|
|
|
|
ILinkManager* m_LinkManager = nullptr;
|
|
|
|
util::DecayingHashSet<RouterID> m_Filter;
|
2020-03-04 00:50:20 +00:00
|
|
|
|
2020-04-07 18:38:56 +00:00
|
|
|
AbstractRouter* m_router;
|
2020-01-30 17:23:16 +00:00
|
|
|
};
|
|
|
|
} // namespace llarp
|