2008-05-12 00:41:55 +00:00
|
|
|
/*
|
2011-01-19 13:48:47 +00:00
|
|
|
* This file Copyright (C) Mnemosyne LLC
|
2008-05-12 00:41:55 +00:00
|
|
|
*
|
2010-12-27 19:18:17 +00:00
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
2008-05-12 00:41:55 +00:00
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
2008-09-23 19:11:04 +00:00
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
2008-05-12 00:41:55 +00:00
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
|
|
|
*
|
2008-05-28 17:17:12 +00:00
|
|
|
* $Id$
|
2008-05-12 00:41:55 +00:00
|
|
|
*/
|
|
|
|
|
2008-05-12 23:51:17 +00:00
|
|
|
#ifndef TR_RPC_H
|
|
|
|
#define TR_RPC_H
|
2008-05-12 00:41:55 +00:00
|
|
|
|
2009-03-25 00:15:42 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2008-05-18 16:44:30 +00:00
|
|
|
/***
|
|
|
|
**** RPC processing
|
|
|
|
***/
|
|
|
|
|
2008-05-24 18:22:16 +00:00
|
|
|
struct tr_benc;
|
2010-12-20 02:07:51 +00:00
|
|
|
struct evbuffer;
|
2008-05-12 00:41:55 +00:00
|
|
|
|
2009-08-12 14:40:32 +00:00
|
|
|
/* FIXME(libevent2): make "response" an evbuffer and remove response_len */
|
2009-01-19 18:11:47 +00:00
|
|
|
typedef void( *tr_rpc_response_func )( tr_session * session,
|
2010-12-20 02:07:51 +00:00
|
|
|
struct evbuffer * response,
|
2009-01-19 18:11:47 +00:00
|
|
|
void * user_data );
|
2008-05-13 12:52:58 +00:00
|
|
|
/* http://www.json.org/ */
|
2009-01-18 15:24:26 +00:00
|
|
|
void tr_rpc_request_exec_json( tr_session * session,
|
|
|
|
const void * request_json,
|
2009-01-19 14:05:43 +00:00
|
|
|
int request_len,
|
2009-01-18 15:24:26 +00:00
|
|
|
tr_rpc_response_func callback,
|
|
|
|
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 */
|
2009-01-18 15:24:26 +00:00
|
|
|
void tr_rpc_request_exec_uri( tr_session * session,
|
|
|
|
const void * request_uri,
|
2009-01-19 14:05:43 +00:00
|
|
|
int request_len,
|
2009-01-18 15:24:26 +00:00
|
|
|
tr_rpc_response_func callback,
|
|
|
|
void * callback_user_data );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
|
|
|
void tr_rpc_parse_list_str( struct tr_benc * setme,
|
2008-12-14 11:21:11 +00:00
|
|
|
const char * list_str,
|
2009-01-19 14:05:43 +00:00
|
|
|
int list_str_len );
|
2008-05-24 18:22:16 +00:00
|
|
|
|
2009-03-25 00:15:42 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
2008-06-16 03:47:50 +00:00
|
|
|
|
2009-03-25 18:41:48 +00:00
|
|
|
#endif /* TR_RPC_H */
|