mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-13 13:42:30 +00:00
* Allow returning torrent::Object map type's with XMLRPC. Patch by Josef Drexler.
* Commands that pass through rpc::parse_command_* now support inline commands that start with a '$'. E.g 'print="$get_ip="'. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@933 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
@@ -54,10 +54,10 @@ extern XmlRpc xmlrpc;
|
||||
|
||||
const char* parse_command_name(const char* first, const char* last, std::string* dest);
|
||||
|
||||
const char* parse_command_single(const char* first);
|
||||
const char* parse_command_single(const char* first, const char* last);
|
||||
void parse_command_single(const char* first);
|
||||
|
||||
const char* parse_command_d_single(core::Download* download, const char* first, const char* last);
|
||||
torrent::Object parse_command_d_single(core::Download* download, const char* first, const char* last);
|
||||
inline torrent::Object parse_command_single(const char* first, const char* last) { return parse_command_d_single(NULL, first, last); }
|
||||
|
||||
void parse_command_multiple(const char* first);
|
||||
bool parse_command_file(const std::string& path);
|
||||
|
||||
Reference in New Issue
Block a user