lokinet/pybind/llarp/tooling/router_event.cpp

44 lines
1.7 KiB
C++
Raw Normal View History

2020-02-28 02:20:28 +00:00
#include "common.hpp"
2020-03-03 00:42:06 +00:00
#include "pybind11/stl.h"
2020-02-28 02:20:28 +00:00
#include "tooling/router_event.hpp"
#include "tooling/dht_event.hpp"
2020-02-28 02:20:28 +00:00
#include <path/path.hpp>
2020-02-28 02:20:28 +00:00
namespace tooling
{
void
RouterEvent_Init(py::module & mod)
{
py::class_<RouterEvent>(mod, "RouterEvent")
.def("__repr__", &RouterEvent::ToString)
.def("__str__", &RouterEvent::ToString)
.def_readonly("routerID", &RouterEvent::routerID)
.def_readonly("triggered", &RouterEvent::triggered);
2020-02-28 02:20:28 +00:00
2020-03-01 00:26:23 +00:00
py::class_<PathAttemptEvent, RouterEvent>(mod, "PathAttemptEvent")
.def_readonly("hops", &PathAttemptEvent::hops);
py::class_<PathRequestReceivedEvent, RouterEvent>(mod, "PathRequestReceivedEvent")
.def_readonly("prevHop", &PathRequestReceivedEvent::prevHop)
.def_readonly("nextHop", &PathRequestReceivedEvent::nextHop)
.def_readonly("txid", &PathRequestReceivedEvent::txid)
.def_readonly("rxid", &PathRequestReceivedEvent::rxid)
2020-03-01 00:26:23 +00:00
.def_readonly("isEndpoint", &PathRequestReceivedEvent::isEndpoint);
py::class_<PubIntroReceivedEvent, RouterEvent>(mod, "DhtPubIntroReceivedEvent")
.def_readonly("from", &PubIntroReceivedEvent::From)
.def_readonly("location", &PubIntroReceivedEvent::IntrosetLocation)
.def_readonly("relayOrder", &PubIntroReceivedEvent::RelayOrder)
.def_readonly("txid", &PubIntroReceivedEvent::TxID);
py::class_<GotIntroReceivedEvent, RouterEvent>(mod, "DhtGotIntroReceivedEvent")
2020-03-01 08:14:27 +00:00
.def_readonly("from", &GotIntroReceivedEvent::From)
.def_readonly("location", &GotIntroReceivedEvent::Introset)
.def_readonly("relayOrder", &GotIntroReceivedEvent::RelayOrder)
.def_readonly("txid", &GotIntroReceivedEvent::TxID);
2020-02-28 02:20:28 +00:00
}
} // namespace tooling