mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
46ad8d4058
- includes are now sorted in consistent, logical order; first step in an attempt to fix the tomfoolery (no relation to Tom) brought in by include-what-you-use - shuffled around some cmake linking to simplify dependency graph - superfluous files removed
38 lines
909 B
C++
38 lines
909 B
C++
#pragma once
|
|
|
|
#include "rpc_request_definitions.hpp"
|
|
|
|
#include <llarp/config/config.hpp>
|
|
|
|
#include <oxen/log/omq_logger.hpp>
|
|
#include <oxenmq/address.h>
|
|
#include <oxenmq/oxenmq.h>
|
|
|
|
#include <string_view>
|
|
|
|
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
|