* Renamed TrackerInfo to DownloadInfo, moved it to DownloadMain and

cleaned up DownloadWrapper etc.

* Resume total upload from the client rather than
torrent::Download::hash_resume_load(...).

* Show client names and versions. (incomplete)


git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@646 e378c898-3ddf-0310-93e7-cc216c733640
This commit is contained in:
rakshasa
2006-03-01 20:48:54 +00:00
parent c77ecb034f
commit b00d083ac2
11 changed files with 393 additions and 62 deletions
+5
View File
@@ -40,6 +40,7 @@
#include "core/manager.h"
#include "display/canvas.h"
#include "display/client_info.h"
#include "display/window.h"
#include "display/manager.h"
#include "input/manager.h"
@@ -64,6 +65,8 @@ Control::Control() :
m_commandScheduler(new CommandScheduler()),
m_variables(new utils::VariableMap()),
m_clientInfo(new display::ClientInfo),
m_tick(0) {
m_inputStdin->slot_pressed(sigc::mem_fun(m_input, &input::Manager::pressed));
@@ -84,6 +87,8 @@ Control::~Control() {
delete m_ui;
delete m_display;
delete m_core;
delete m_clientInfo;
}
void