mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-12 21:22:31 +00:00
* Allow a list of commands to be called on a newly created download
before it is started. * The "load_*" commands now allow a list of commands to be appended. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@941 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
@@ -65,7 +65,7 @@ inline torrent::Object parse_command_d_single(core::Download* download, const ch
|
||||
void parse_command_multiple(core::Download* download, const char* first, const char* last);
|
||||
|
||||
void parse_command_d_multiple(core::Download* download, const char* first);
|
||||
inline void parse_command_d_multiple_std(core::Download* download, const std::string& cmd) { parse_command_d_multiple(download, cmd.c_str()); }
|
||||
inline void parse_command_d_multiple_std(core::Download* download, const std::string& cmd) { parse_command_multiple(download, cmd.c_str(), cmd.c_str() + cmd.size()); }
|
||||
inline void parse_command_multiple(const char* first) { parse_command_d_multiple(NULL, first); }
|
||||
|
||||
bool parse_command_file(const std::string& path);
|
||||
|
||||
Reference in New Issue
Block a user