WIP: LokidRpcClient

pull/1306/head
Stephen Shelton 4 years ago committed by Jeff Becker
parent 17026a0b21
commit fd4b03f896
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -276,7 +276,9 @@ if(SUBMODULE_CHECK)
endif()
endif()
add_subdirectory(external/loki-mq EXCLUDE_FROM_ALL)
add_subdirectory(external/loki-mq)
include_directories(external/loki-mq)
include_directories(external/loki-mq/mapbox-variant/include)
# We only actually need pybind11 with WITH_HIVE, but if we don't load it here then something further
# down loads a broken PythonInterp that loads Python2, but Python2 headers are not C++17 compatible.

@ -265,7 +265,6 @@ namespace llarp
const llarp_time_t _randomStartDelay;
std::shared_ptr<rpc::LokidRpcClient> m_lokidRpcClient;
std::string lokidRPCAddr = "ipc://loki.sock";
std::string lokidRPCUser;
std::string lokidRPCPassword;

@ -32,7 +32,6 @@ namespace llarp
return lokimq::LogLevel::trace;
}
}
LokidRpcClient::LokidRpcClient(LMQ_ptr lmq, AbstractRouter* r)
: m_lokiMQ(std::move(lmq)), m_Router(r)
{

@ -3,6 +3,7 @@
#include <router_id.hpp>
#include <lokimq/lokimq.h>
#include <crypto/types.hpp>
namespace llarp

Loading…
Cancel
Save