From 9934635fedf54221d5d3ab7ba8aa40a63c95e9c9 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Fri, 10 Aug 2007 09:17:52 +0000 Subject: [PATCH] revert 1420 since it broke resuming torrents --- libtorrent/src/torrent.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libtorrent/src/torrent.cpp b/libtorrent/src/torrent.cpp index 33feab352..baded7160 100755 --- a/libtorrent/src/torrent.cpp +++ b/libtorrent/src/torrent.cpp @@ -2527,6 +2527,10 @@ namespace libtorrent #endif m_paused = false; + m_uploads_quota.min = 0; + m_connections_quota.min = 2; + m_uploads_quota.max = std::numeric_limits::max(); + m_connections_quota.max = std::numeric_limits::max(); // tell the tracker that we're back m_event = tracker_request::started;