mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-09 11:42:33 +00:00
* Added "d_delete_tied" command.
* Moved CommandScheduler into src/rpc. * Fixed a bug in the "download_list" command. * Partial cleanup of the tracker list. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@924 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
+3
-4
@@ -63,13 +63,12 @@ namespace input {
|
||||
}
|
||||
|
||||
namespace rpc {
|
||||
class CommandScheduler;
|
||||
class FastCgi;
|
||||
class SCgi;
|
||||
class XmlRpc;
|
||||
}
|
||||
|
||||
class CommandScheduler;
|
||||
|
||||
class Control {
|
||||
public:
|
||||
Control();
|
||||
@@ -98,7 +97,7 @@ public:
|
||||
input::Manager* input() { return m_input; }
|
||||
input::InputEvent* input_stdin() { return m_inputStdin; }
|
||||
|
||||
CommandScheduler* command_scheduler() { return m_commandScheduler; }
|
||||
rpc::CommandScheduler* command_scheduler() { return m_commandScheduler; }
|
||||
|
||||
rpc::FastCgi* fast_cgi() { return m_fastCgi; }
|
||||
void set_fast_cgi(rpc::FastCgi* f) { m_fastCgi = f; }
|
||||
@@ -134,7 +133,7 @@ private:
|
||||
input::Manager* m_input;
|
||||
input::InputEvent* m_inputStdin;
|
||||
|
||||
CommandScheduler* m_commandScheduler;
|
||||
rpc::CommandScheduler* m_commandScheduler;
|
||||
|
||||
rpc::FastCgi* m_fastCgi;
|
||||
rpc::SCgi* m_scgi;
|
||||
|
||||
Reference in New Issue
Block a user