lokinet/llarp/router/rc_gossiper.hpp

44 lines
899 B
C++
Raw Normal View History

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
GossipRC(const RouterContact& rc) override;
2020-01-30 17:23:16 +00:00
void
Decay(Time_t now) override;
bool
ShouldGossipOurRC(Time_t now) const override;
bool
IsOurRC(const RouterContact& rc) const override;
2020-01-30 17:23:16 +00:00
void
Init(ILinkManager*, const RouterID&, AbstractRouter*);
2020-01-30 17:23:16 +00:00
private:
RouterID m_OurRouterID;
Time_t m_LastGossipedOurRC = 0s;
ILinkManager* m_LinkManager = nullptr;
util::DecayingHashSet<RouterID> m_Filter;
2020-03-04 00:50:20 +00:00
AbstractRouter* m_router;
2020-01-30 17:23:16 +00:00
};
} // namespace llarp
#endif