mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-31 09:20:21 +00:00
28 lines
465 B
C++
28 lines
465 B
C++
#pragma once
|
|
|
|
#include <string_view>
|
|
#include <oxenmq/oxenmq.h>
|
|
#include <oxenmq/address.h>
|
|
|
|
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:
|
|
LMQ_ptr m_LMQ;
|
|
AbstractRouter* const m_Router;
|
|
};
|
|
} // namespace llarp::rpc
|