From 43bd6a98428eba7093f85acbbbbc24e391220b39 Mon Sep 17 00:00:00 2001 From: Thomas Winget Date: Tue, 9 Mar 2021 20:09:29 -0500 Subject: [PATCH] remove vestigal file a file that was accidentally committed after being moved was suddenly being chosen as an include target over the correct one due to an amusing coincidence of cmake configuration. that file is now gone. --- pybind/llarp/tooling/peer_stats_event.hpp | 27 ----------------------- 1 file changed, 27 deletions(-) delete mode 100644 pybind/llarp/tooling/peer_stats_event.hpp diff --git a/pybind/llarp/tooling/peer_stats_event.hpp b/pybind/llarp/tooling/peer_stats_event.hpp deleted file mode 100644 index 707c7fe54..000000000 --- a/pybind/llarp/tooling/peer_stats_event.hpp +++ /dev/null @@ -1,27 +0,0 @@ -#pragma once - -#include - -namespace tooling -{ - struct LinkSessionEstablishedEvent : public RouterEvent - { - llarp::RouterID remoteId; - bool inbound = false; - - LinkSessionEstablishedEvent( - const llarp::RouterID& ourRouterId, const llarp::RouterID& remoteId_, bool inbound_) - : RouterEvent("Link: LinkSessionEstablishedEvent", ourRouterId, false) - , remoteId(remoteId_) - , inbound(inbound_) - {} - - std::string - ToString() const - { - return RouterEvent::ToString() + (inbound ? "inbound" : "outbound") - + " : LinkSessionEstablished with " + remoteId.ToString(); - } - }; - -} // namespace tooling