mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-03 06:58:42 +00:00
peers change
This commit is contained in:
parent
2c6b146ae6
commit
be897f8ec1
2 changed files with 6 additions and 8 deletions
|
@ -613,9 +613,7 @@ static PyObject *torrent_get_torrent_state(PyObject *self, PyObject *args)
|
|||
|
||||
long connected_seeds = 0;
|
||||
for (unsigned long i = 0; i < peers.size(); i++)
|
||||
if ( peers[i].seed && !(peers[i].flags&
|
||||
(peer_info::handshake|peer_info::connecting|peer_info::queued)) )
|
||||
connected_seeds++;
|
||||
if (peers[i].flags&(peer_info::seed)) connected_seeds++;
|
||||
|
||||
long connected_peers = s.num_peers - connected_seeds;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue