mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-02 03:40:12 +00:00
68 lines
1.1 KiB
C++
68 lines
1.1 KiB
C++
#ifndef LLARP_RPC_HPP
|
|
#define LLARP_RPC_HPP
|
|
|
|
#include <util/time.hpp>
|
|
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace llarp
|
|
{
|
|
struct PubKey;
|
|
struct AbstractRouter;
|
|
|
|
namespace rpc
|
|
{
|
|
struct ServerImpl;
|
|
|
|
/// jsonrpc server
|
|
struct Server
|
|
{
|
|
Server(AbstractRouter* r);
|
|
~Server();
|
|
|
|
bool
|
|
Start(const std::string& bindaddr);
|
|
|
|
/// stop and close
|
|
void
|
|
Stop();
|
|
|
|
private:
|
|
std::unique_ptr< ServerImpl > m_Impl;
|
|
};
|
|
|
|
struct CallerImpl;
|
|
|
|
/// jsonrpc caller
|
|
struct Caller
|
|
{
|
|
Caller(AbstractRouter* r);
|
|
~Caller();
|
|
|
|
/// set http basic auth for use with remote rpc endpoint
|
|
void
|
|
SetAuth(const std::string& user, const std::string& password);
|
|
|
|
/// start with jsonrpc endpoint address
|
|
bool
|
|
Start(const std::string& remote);
|
|
|
|
/// stop and close
|
|
void
|
|
Stop();
|
|
|
|
/// do per second tick
|
|
void
|
|
Tick(llarp_time_t now);
|
|
|
|
private:
|
|
std::unique_ptr< CallerImpl > m_Impl;
|
|
};
|
|
|
|
} // namespace rpc
|
|
} // namespace llarp
|
|
|
|
#endif
|