2020-01-30 17:23:16 +00:00
|
|
|
#ifndef LLARP_RC_GOSSIPER_HPP
|
|
|
|
#define LLARP_RC_GOSSIPER_HPP
|
|
|
|
|
|
|
|
#include <util/decaying_hashset.hpp>
|
|
|
|
#include <router/i_gossiper.hpp>
|
|
|
|
#include <router/i_outbound_message_handler.hpp>
|
|
|
|
#include <link/i_link_manager.hpp>
|
2020-03-04 00:50:20 +00:00
|
|
|
#include <router/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
|
|
|
|
|
|
|
|
#endif
|