mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
7caa87862e
All #ifndef guards on headers have been removed, I think, in favor of #pragma once Headers are now included as `#include "filename"` if the included file resides in the same directory as the file including it, or any subdirectory therein. Otherwise they are included as `#include <project/top/dir/relative/path/filename>` The above does not include system/os headers.
39 lines
950 B
C++
39 lines
950 B
C++
#pragma once
|
|
|
|
#include <llarp/router/router.hpp>
|
|
|
|
namespace tooling
|
|
{
|
|
/// HiveRouter is a subclass of Router which overrides specific behavior in
|
|
/// order to perform testing-related functions. It exists largely to prevent
|
|
/// this behavior (which may often be "dangerous") from leaking into release
|
|
/// code.
|
|
struct HiveRouter : public llarp::Router
|
|
{
|
|
explicit HiveRouter(
|
|
llarp::EventLoop_ptr loop,
|
|
std::shared_ptr<llarp::vpn::Platform> vpnPlatform,
|
|
RouterHive* hive);
|
|
|
|
virtual ~HiveRouter() = default;
|
|
|
|
/// Override logic to prevent base Router class from gossiping its RC.
|
|
virtual bool
|
|
disableGossipingRC_TestingOnly() override;
|
|
|
|
void
|
|
disableGossiping();
|
|
|
|
void
|
|
enableGossiping();
|
|
|
|
protected:
|
|
bool m_disableGossiping = false;
|
|
RouterHive* m_hive = nullptr;
|
|
|
|
virtual void
|
|
HandleRouterEvent(RouterEventPtr event) const override;
|
|
};
|
|
|
|
} // namespace tooling
|