mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
60 lines
907 B
C++
60 lines
907 B
C++
#ifndef LLARP_RPC_HPP
|
|
#define LLARP_RPC_HPP
|
|
|
|
#include <crypto.hpp>
|
|
#include <ev.h>
|
|
#include <time.hpp>
|
|
|
|
#include <string>
|
|
#include <functional>
|
|
|
|
namespace llarp
|
|
{
|
|
struct Router;
|
|
|
|
namespace rpc
|
|
{
|
|
struct ServerImpl;
|
|
|
|
/// jsonrpc server
|
|
struct Server
|
|
{
|
|
Server(llarp::Router* r);
|
|
~Server();
|
|
|
|
bool
|
|
Start(const std::string& bindaddr);
|
|
|
|
private:
|
|
ServerImpl* m_Impl;
|
|
};
|
|
|
|
struct CallerImpl;
|
|
|
|
/// jsonrpc caller
|
|
struct Caller
|
|
{
|
|
Caller(llarp::Router* r);
|
|
~Caller();
|
|
|
|
/// start with jsonrpc endpoint address
|
|
bool
|
|
Start(const std::string& remote);
|
|
|
|
/// test if a router is valid
|
|
bool
|
|
VerifyRouter(const llarp::PubKey& pk);
|
|
|
|
/// do per second tick
|
|
void
|
|
Tick(llarp_time_t now);
|
|
|
|
private:
|
|
CallerImpl* m_Impl;
|
|
};
|
|
|
|
} // namespace rpc
|
|
} // namespace llarp
|
|
|
|
#endif
|