You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/include/llarp/rpc.hpp

58 lines
923 B
C++

#ifndef LLARP_RPC_HPP
#define LLARP_RPC_HPP
#include <llarp/time.hpp>
#include <llarp/ev.h>
#include <string>
#include <functional>
#include <llarp/crypto.hpp>
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