Last change
on this file since 5827 was
5827,
checked in by charles, 14 years ago
|
make the request/response messages a little terser. add per-torrent speed limit toggles. rename ipc -> rpc.
|
File size:
673 bytes
|
Line | |
---|
1 | /* |
---|
2 | * This file Copyright (C) 2008 Charles Kerr <charles@rebelbase.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:$ |
---|
11 | */ |
---|
12 | |
---|
13 | #ifndef TR_RPC_H |
---|
14 | #define TR_RPC_H |
---|
15 | |
---|
16 | struct tr_handle; |
---|
17 | |
---|
18 | char* |
---|
19 | tr_rpc_request_exec( struct tr_handle * handle, |
---|
20 | const void * request_json, |
---|
21 | int request_len, |
---|
22 | int * response_len ); |
---|
23 | |
---|
24 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.