mirror of
https://github.com/ZmnSCPxj/clboss.git
synced 2026-08-17 13:07:24 +02:00
Boss/Mod/ListpeersAnnouncer.cpp: Module to perform listpeers periodically.
We will later modify other modules to use this instead of doing `listpeers` themselves.
This commit is contained in:
parent
dfdd807db4
commit
bddaa5c2b2
5 changed files with 99 additions and 0 deletions
|
|
@ -6,6 +6,7 @@
|
|||
#include"Boss/Mod/InitialConnect.hpp"
|
||||
#include"Boss/Mod/Initiator.hpp"
|
||||
#include"Boss/Mod/JsonOutputter.hpp"
|
||||
#include"Boss/Mod/ListpeersAnnouncer.hpp"
|
||||
#include"Boss/Mod/Manifester.hpp"
|
||||
#include"Boss/Mod/NeedsConnectSolicitor.hpp"
|
||||
#include"Boss/Mod/Timers.hpp"
|
||||
|
|
@ -74,6 +75,7 @@ std::shared_ptr<void> all( std::ostream& cout
|
|||
all->install<NeedsConnectSolicitor>(bus);
|
||||
all->install<ConnectFinderByDns>(bus);
|
||||
all->install<ConnectFinderByHardcode>(bus);
|
||||
all->install<ListpeersAnnouncer>(bus);
|
||||
|
||||
all->install<Dummy>(bus);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue