You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/tooling/router_event.hpp

67 lines
1.1 KiB
C++

#pragma once
#include <router_id.hpp>
#include <string>
#include <vector>
#include <memory>
namespace llarp
{
namespace path
{
struct Path;
struct PathHopConfig;
struct TransitHop;
} // namespace llarp::path
} // namespace llarp
namespace tooling
{
struct RouterHive;
struct RouterEvent
{
RouterEvent(llarp::RouterID, bool triggered);
virtual ~RouterEvent() = default;
virtual std::string ToString() const = 0;
llarp::RouterID routerID;
bool triggered = false;
};
using RouterEventPtr = std::unique_ptr<RouterEvent>;
4 years ago
struct PathAttemptEvent : public RouterEvent
{
PathAttemptEvent(const llarp::RouterID& routerID, std::shared_ptr<const llarp::path::Path> path);
std::string ToString() const override;
std::vector<llarp::path::PathHopConfig> hops;
4 years ago
};
struct PathRequestReceivedEvent : public RouterEvent
{
PathRequestReceivedEvent(const llarp::RouterID& routerID, std::shared_ptr<const llarp::path::TransitHop> hop);
std::string ToString() const override;
llarp::RouterID prevHop;
llarp::RouterID nextHop;
bool isEndpoint = false;
};
} // namespace tooling