lokinet/pybind/module.cpp

26 lines
722 B
C++
Raw Permalink Normal View History

2020-01-17 14:22:08 +01:00
#include "common.hpp"
2022-07-19 20:22:38 +02:00
#include <llarp/util/logging.hpp>
2020-01-17 14:22:08 +01:00
PYBIND11_MODULE(pyllarp, m)
{
2020-02-27 22:30:45 +01:00
tooling::RouterHive_Init(m);
2020-02-28 03:19:47 +01:00
tooling::RouterEvent_Init(m);
llarp::AbstractRouter_Init(m);
tooling::HiveRouter_Init(m);
llarp::PeerDb_Init(m);
llarp::PeerStats_Init(m);
llarp::RouterID_Init(m);
2020-01-17 14:22:08 +01:00
llarp::RouterContact_Init(m);
2020-01-17 16:06:08 +01:00
llarp::CryptoTypes_Init(m);
llarp::Context_Init(m);
tooling::HiveContext_Init(m);
2020-02-27 23:05:25 +01:00
llarp::Config_Init(m);
llarp::dht::DHTTypes_Init(m);
llarp::PathTypes_Init(m);
llarp::path::PathHopConfig_Init(m);
2020-02-28 17:29:15 +01:00
llarp::handlers::PyHandler_Init(m);
llarp::service::Address_Init(m);
2022-07-19 20:22:38 +02:00
m.def("EnableDebug", []() { llarp::log::reset_level(llarp::log::Level::debug); });
2020-06-08 21:15:54 +02:00
llarp::Logger_Init(m);
2020-01-17 14:22:08 +01:00
}