Last change
on this file since 7404 was
7404,
checked in by charles, 12 years ago
|
updated email address
|
-
Property svn:keywords set to
Date Rev Author Id
|
File size:
1.2 KB
|
Line | |
---|
1 | /* |
---|
2 | * This file Copyright (C) 2008 Charles Kerr <charles@transmissionbt.com> |
---|
3 | * |
---|
4 | * This file is licensed by the GPL version 2. Works owned by the |
---|
5 | * Transmission project are granted a special exemption to clause 2(b) |
---|
6 | * so that the bulk of its code can remain under the MIT license. |
---|
7 | * This exemption does not extend to derived works not owned by |
---|
8 | * the Transmission project. |
---|
9 | * |
---|
10 | * $Id: rpcimpl.h 7404 2008-12-16 00:20:44Z charles $ |
---|
11 | */ |
---|
12 | |
---|
13 | #ifndef TR_RPC_H |
---|
14 | #define TR_RPC_H |
---|
15 | |
---|
16 | /*** |
---|
17 | **** RPC processing |
---|
18 | ***/ |
---|
19 | |
---|
20 | struct tr_benc; |
---|
21 | |
---|
22 | /* http://www.json.org/ */ |
---|
23 | char*tr_rpc_request_exec_json( tr_session * session, |
---|
24 | const void * request_json, |
---|
25 | int request_len, |
---|
26 | int * response_len ); |
---|
27 | |
---|
28 | /* see the RPC spec's "Request URI Notation" section */ |
---|
29 | char*tr_rpc_request_exec_uri( tr_session * session, |
---|
30 | const void * request_uri, |
---|
31 | int request_len, |
---|
32 | int * response_len ); |
---|
33 | |
---|
34 | void tr_rpc_parse_list_str( struct tr_benc * setme, |
---|
35 | const char * list_str, |
---|
36 | size_t list_str_len ); |
---|
37 | |
---|
38 | |
---|
39 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.