* 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:
rakshasa
2007-06-24 20:25:44 +00:00
parent 9f11a5ad92
commit e6e7e8a384
23 changed files with 147 additions and 155 deletions
+3 -4
View File
@@ -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;