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/pybind/llarp/router.cpp

29 lines
671 B
C++

#include "common.hpp"
#include <llarp/router/router.hpp>
#include <llarp/tooling/hive_router.hpp>
namespace llarp
{
void
Router_Init(py::module& mod)
{
py::class_<Router, std::shared_ptr<Router>>(mod, "Router")
.def("rc", &Router::rc)
.def("Stop", &Router::Stop)
.def("peerDb", &Router::peerDb);
}
} // namespace llarp
namespace tooling
{
void
HiveRouter_Init(py::module& mod)
{
py::class_<HiveRouter, llarp::Router, std::shared_ptr<HiveRouter>>(mod, "HiveRouter")
.def("disableGossiping", &HiveRouter::disableGossiping)
.def("enableGossiping", &HiveRouter::enableGossiping);
}
} // namespace tooling