mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
eaf30de1fd
respects whether RPC is enabled, removes the log sink otherwise bumps oxen-mq and oxen-logging
34 lines
595 B
C++
34 lines
595 B
C++
#pragma once
|
|
|
|
#include <string_view>
|
|
#include <oxenmq/oxenmq.h>
|
|
#include <oxenmq/address.h>
|
|
#include <oxen/log/omq_logger.hpp>
|
|
|
|
namespace llarp
|
|
{
|
|
struct AbstractRouter;
|
|
}
|
|
|
|
namespace llarp::rpc
|
|
{
|
|
using LMQ_ptr = std::shared_ptr<oxenmq::OxenMQ>;
|
|
|
|
struct RpcServer
|
|
{
|
|
explicit RpcServer(LMQ_ptr, AbstractRouter*);
|
|
~RpcServer() = default;
|
|
void
|
|
AsyncServeRPC(oxenmq::address addr);
|
|
|
|
private:
|
|
void
|
|
HandleLogsSubRequest(oxenmq::Message& m);
|
|
|
|
LMQ_ptr m_LMQ;
|
|
AbstractRouter* const m_Router;
|
|
|
|
oxen::log::PubsubLogger log_subs;
|
|
};
|
|
} // namespace llarp::rpc
|