2022-01-20 18:27:56 +00:00
|
|
|
// This file Copyright © 2008-2022 Mnemosyne LLC.
|
|
|
|
// It may be used under GPLv2 (SPDX: GPL-2.0), GPLv3 (SPDX: GPL-3.0),
|
|
|
|
// or any future license endorsed by Mnemosyne LLC.
|
|
|
|
// License text can be found in the licenses/ folder.
|
2008-05-12 00:41:55 +00:00
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2008-05-12 00:41:55 +00:00
|
|
|
|
2021-12-15 21:25:42 +00:00
|
|
|
#include <cstddef> // size_t
|
2021-10-15 23:34:22 +00:00
|
|
|
#include <string_view>
|
|
|
|
|
2012-12-14 04:34:42 +00:00
|
|
|
#include "transmission.h"
|
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
/***
|
|
|
|
**** RPC processing
|
|
|
|
***/
|
|
|
|
|
2021-11-09 03:30:03 +00:00
|
|
|
struct tr_variant;
|
|
|
|
|
2021-10-06 14:26:07 +00:00
|
|
|
using tr_rpc_response_func = void (*)(tr_session* session, tr_variant* response, void* user_data);
|
2008-05-12 00:41:55 +00:00
|
|
|
|
2008-05-13 12:52:58 +00:00
|
|
|
/* http://www.json.org/ */
|
2021-08-15 09:41:48 +00:00
|
|
|
void tr_rpc_request_exec_json(
|
|
|
|
tr_session* session,
|
|
|
|
tr_variant const* request,
|
|
|
|
tr_rpc_response_func callback,
|
2017-04-19 12:04:45 +00:00
|
|
|
void* callback_user_data);
|
2008-05-13 12:52:58 +00:00
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
/* see the RPC spec's "Request URI Notation" section */
|
2021-08-15 09:41:48 +00:00
|
|
|
void tr_rpc_request_exec_uri(
|
|
|
|
tr_session* session,
|
2021-12-16 02:09:46 +00:00
|
|
|
std::string_view request_uri,
|
2021-08-15 09:41:48 +00:00
|
|
|
tr_rpc_response_func callback,
|
|
|
|
void* callback_user_data);
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2021-10-15 23:34:22 +00:00
|
|
|
void tr_rpc_parse_list_str(tr_variant* setme, std::string_view str);
|