mirror of
https://github.com/codex-storage/deluge.git
synced 2025-02-06 00:23:32 +00:00
Optimized counting number of DHT peers.
This commit is contained in:
parent
a69be4161b
commit
ba53e0268f
@ -305,14 +305,8 @@ long count_DHT_peers(entry &state)
|
||||
if (nodes)
|
||||
{
|
||||
entry::list_type &peers = nodes->list();
|
||||
entry::list_type::const_iterator i;
|
||||
i = peers.begin();
|
||||
|
||||
while (i != peers.end())
|
||||
{
|
||||
num_peers++;
|
||||
i++;
|
||||
}
|
||||
|
||||
num_peers = peers.size();
|
||||
}
|
||||
|
||||
return num_peers;
|
||||
|
Loading…
x
Reference in New Issue
Block a user