mirror of
https://github.com/twisterarmy/twister-core.git
synced 2025-01-09 06:18:02 +00:00
update "interesting" upon receiving bitfield
This commit is contained in:
parent
4d3e7a3551
commit
ca1eb9f3c2
@ -1871,6 +1871,18 @@ namespace libtorrent
|
|||||||
m_have_piece = bits;
|
m_have_piece = bits;
|
||||||
m_num_pieces = num_pieces;
|
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);
|
if (interesting) t->get_policy().peer_is_interesting(*this);
|
||||||
else if (upload_only()) disconnect(errors::upload_upload_connection);
|
else if (upload_only()) disconnect(errors::upload_upload_connection);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user