mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-11 07:10:36 +00:00
b2e8cde64b
- added hotswap functionality - map_exit and unmap_exit working
35 lines
906 B
C++
35 lines
906 B
C++
#pragma once
|
|
|
|
#include "rpc_request_definitions.hpp"
|
|
#include <string_view>
|
|
#include <llarp/config/config.hpp>
|
|
#include <oxenmq/oxenmq.h>
|
|
#include <oxenmq/address.h>
|
|
#include <oxen/log/omq_logger.hpp>
|
|
|
|
namespace llarp::rpc
|
|
{
|
|
using rpc_input = std::variant<std::monostate, nlohmann::json, oxenc::bt_dict_consumer>;
|
|
|
|
inline void
|
|
parse_request(NoArgs&, rpc_input)
|
|
{}
|
|
|
|
void
|
|
parse_request(QuicConnect& quicconnect, rpc_input input);
|
|
void
|
|
parse_request(QuicListener& quiclistener, rpc_input input);
|
|
void
|
|
parse_request(LookupSnode& lookupsnode, rpc_input input);
|
|
void
|
|
parse_request(MapExit& mapexit, rpc_input input);
|
|
void
|
|
parse_request(UnmapExit& unmapexit, rpc_input input);
|
|
void
|
|
parse_request(SwapExits& swapexits, rpc_input input);
|
|
void
|
|
parse_request(DNSQuery& dnsquery, rpc_input input);
|
|
void
|
|
parse_request(Config& config, rpc_input input);
|
|
|
|
} // namespace llarp::rpc
|