mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
p2p: add a couple early outs when the stop signal is received
This avoids quicker exit
This commit is contained in:
parent
80d361c795
commit
ef005f5e72
1 changed files with 5 additions and 0 deletions
|
@ -1127,6 +1127,8 @@ namespace nodetool
|
|||
|
||||
if (use_white_list) {
|
||||
local_peers_count = m_peerlist.get_white_peers_count();
|
||||
if (!local_peers_count)
|
||||
return false;
|
||||
max_random_index = std::min<uint64_t>(local_peers_count -1, 20);
|
||||
random_index = get_random_index_with_fixed_probability(max_random_index);
|
||||
} else {
|
||||
|
@ -1951,6 +1953,9 @@ namespace nodetool
|
|||
{
|
||||
peerlist_entry pe = AUTO_VAL_INIT(pe);
|
||||
|
||||
if (m_net_server.is_stop_signal_sent())
|
||||
return false;
|
||||
|
||||
if (!m_peerlist.get_random_gray_peer(pe)) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue