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

56 lines
967 B
C++

6 years ago
#ifndef LLARP_RPC_HPP
#define LLARP_RPC_HPP
#include <llarp/time.hpp>
6 years ago
#include <llarp/ev.h>
#include <string>
#include <functional>
#include <llarp/crypto.hpp>
6 years ago
// forward declare
struct llarp_router;
namespace llarp
{
namespace rpc
{
struct ServerImpl;
/// jsonrpc server
6 years ago
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);
/// async test if a router is valid via jsonrpc
void
AsyncVerifyRouter(llarp::PubKey pkey,
std::function< void(llarp::PubKey, bool) > handler);
private:
CallerImpl* m_Impl;
};
6 years ago
} // namespace rpc
} // namespace llarp
#endif