mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-11 07:10:36 +00:00
273270916e
This commit reflects changes to clang-format rules. Unfortunately, these rule changes create a massive change to the codebase, which causes an apparent rewrite of git history. Git blame's --ignore-rev flag can be used to ignore this commit when attempting to `git blame` some code.
58 lines
940 B
C++
58 lines
940 B
C++
#pragma once
|
|
|
|
#include <router_id.hpp>
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <memory>
|
|
|
|
namespace llarp
|
|
{
|
|
struct PathID_t;
|
|
|
|
namespace path
|
|
{
|
|
struct Path;
|
|
struct PathHopConfig;
|
|
|
|
struct TransitHop;
|
|
|
|
} // namespace path
|
|
|
|
} // namespace llarp
|
|
|
|
namespace tooling
|
|
{
|
|
struct RouterHive;
|
|
|
|
struct RouterEvent
|
|
{
|
|
RouterEvent(std::string eventType, llarp::RouterID routerID, bool triggered)
|
|
: eventType(eventType), routerID(routerID), triggered(triggered)
|
|
{
|
|
}
|
|
|
|
virtual ~RouterEvent() = default;
|
|
|
|
virtual std::string
|
|
ToString() const
|
|
{
|
|
std::string result;
|
|
result += eventType;
|
|
result += " [";
|
|
result += routerID.ShortString();
|
|
result += "] -- ";
|
|
return result;
|
|
}
|
|
|
|
const std::string eventType;
|
|
|
|
llarp::RouterID routerID;
|
|
|
|
bool triggered = false;
|
|
};
|
|
|
|
using RouterEventPtr = std::unique_ptr<RouterEvent>;
|
|
|
|
} // namespace tooling
|