From e8e1c7f91f4eeb11648f100469757080c8334c03 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Thu, 28 Dec 2006 00:06:59 +0000 Subject: [PATCH] - Updated TODO - Disabled limit of 60 connections per torrent (Download seems faster) --- TODO | 5 ++--- src/GUI.cpp | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/TODO b/TODO index 85d212042..9db0d858b 100644 --- a/TODO +++ b/TODO @@ -35,8 +35,7 @@ - Add a torrent scheduler // In v0.9.0 -- Some GUI redesign ? -- base on libtorrent v0.12 (still not released) -- Peer Exchange (PeX) support in libtorrent v0.12 +- Wait for libtorrent v0.12 release +- Add an option to disable Peer Exchange (PeX) - Check deletion from hard drive (bug reported) - Should create options dialog only when needed to save up some memory \ No newline at end of file diff --git a/src/GUI.cpp b/src/GUI.cpp index 794524010..438864142 100644 --- a/src/GUI.cpp +++ b/src/GUI.cpp @@ -1261,7 +1261,7 @@ void GUI::addTorrent(const QString& path, bool fromScanDir, const QString& from_ h = s->add_torrent(t, fs::path((const char*)savePath.toUtf8()), resume_data, true); qDebug("Compact allocation mode"); } - h.set_max_connections(60); + //h.set_max_connections(60); h.set_max_uploads(-1); // Load filtered files loadFilteredFiles(h);