mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-09 13:10:25 +00:00
32 lines
439 B
C++
32 lines
439 B
C++
#ifndef LLARP_RPC_HPP
|
|
#define LLARP_RPC_HPP
|
|
#include <llarp/time.h>
|
|
#include <llarp/ev.h>
|
|
#include <string>
|
|
|
|
// forward declare
|
|
struct llarp_router;
|
|
|
|
namespace llarp
|
|
{
|
|
namespace rpc
|
|
{
|
|
struct ServerImpl;
|
|
|
|
struct Server
|
|
{
|
|
Server(llarp_router* r);
|
|
~Server();
|
|
|
|
bool
|
|
Start(const std::string& bindaddr);
|
|
|
|
private:
|
|
ServerImpl* m_Impl;
|
|
};
|
|
|
|
} // namespace rpc
|
|
} // namespace llarp
|
|
|
|
#endif
|