From ca1eb9f3c25bc07820d03489cc3315f125514c61 Mon Sep 17 00:00:00 2001 From: Miguel Freitas Date: Sun, 8 Dec 2013 16:34:56 -0200 Subject: [PATCH] update "interesting" upon receiving bitfield --- libtorrent/src/peer_connection.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/libtorrent/src/peer_connection.cpp b/libtorrent/src/peer_connection.cpp index 3a0aadb1..a6ddb2d0 100644 --- a/libtorrent/src/peer_connection.cpp +++ b/libtorrent/src/peer_connection.cpp @@ -1871,6 +1871,18 @@ namespace libtorrent m_have_piece = bits; m_num_pieces = num_pieces; + //[MF] this is not original code. + // inserted here trying to fix torrents that never start requesting + for (int i = 0; i < int(m_have_piece.size()); ++i) { + if (m_have_piece[i]) { + // if the peer has a piece and we don't, the peer is interesting + if (!t->have_piece(i) + && t->picker().piece_priority(i) != 0) { + interesting = true; + break; + } + } + } if (interesting) t->get_policy().peer_is_interesting(*this); else if (upload_only()) disconnect(errors::upload_upload_connection); }