From 3412c0f709b6c9c433a9bde469b75258cf229829 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Thu, 6 Nov 2008 08:34:56 +0000 Subject: [PATCH] added option to set peers in a state where it doesn't download --- include/libtorrent/peer_connection.hpp | 11 ++++++++++- src/peer_connection.cpp | 2 ++ src/policy.cpp | 1 + 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/include/libtorrent/peer_connection.hpp b/include/libtorrent/peer_connection.hpp index 4be5d772b..5fda11429 100644 --- a/include/libtorrent/peer_connection.hpp +++ b/include/libtorrent/peer_connection.hpp @@ -198,6 +198,9 @@ namespace libtorrent void request_large_blocks(bool b) { m_request_large_blocks = b; } + bool no_download() const { return m_no_download; } + void no_download(bool b) { m_no_download = b; } + void set_priority(int p) { m_priority = p; } @@ -318,6 +321,8 @@ namespace libtorrent bool on_local_network() const; bool ignore_bandwidth_limits() const { return m_ignore_bandwidth_limits; } + void ignore_bandwidth_limits(bool i) + { m_ignore_bandwidth_limits = i; } bool failed() const { return m_failed; } @@ -661,7 +666,7 @@ namespace libtorrent // this is the torrent this connection is // associated with. If the connection is an - // incoming conncetion, this is set to zero + // incoming connection, this is set to zero // until the info_hash is received. Then it's // set to the torrent it belongs to. boost::weak_ptr m_torrent; @@ -870,6 +875,10 @@ namespace libtorrent // this is set to true once the bitfield is received bool m_bitfield_received:1; + // if this is set to true, the client will not + // pick any pieces from this peer + bool m_no_download:1; + #ifndef NDEBUG public: bool m_in_constructor:1; diff --git a/src/peer_connection.cpp b/src/peer_connection.cpp index 33f8ba04e..1001f1554 100644 --- a/src/peer_connection.cpp +++ b/src/peer_connection.cpp @@ -130,6 +130,7 @@ namespace libtorrent , m_upload_only(false) , m_snubbed(false) , m_bitfield_received(false) + , m_no_download(false) #ifndef NDEBUG , m_in_constructor(true) , m_disconnect_started(false) @@ -237,6 +238,7 @@ namespace libtorrent , m_upload_only(false) , m_snubbed(false) , m_bitfield_received(false) + , m_no_download(false) #ifndef NDEBUG , m_in_constructor(true) , m_disconnect_started(false) diff --git a/src/policy.cpp b/src/policy.cpp index 2c67d9f8a..b43a35eb8 100644 --- a/src/policy.cpp +++ b/src/policy.cpp @@ -179,6 +179,7 @@ namespace libtorrent void request_a_block(torrent& t, peer_connection& c) { if (t.is_seed()) return; + if (c.no_download()) return; TORRENT_ASSERT(t.valid_metadata()); TORRENT_ASSERT(c.peer_info_struct() != 0 || !dynamic_cast(&c));