mirror of
https://github.com/monero-project/monero.git
synced 2025-07-25 04:05:25 -04:00
Merge pull request #2073
07c4276c
Don't issue a new timedsync while one is already in progress (Howard Chu)cf3a376c
Don't timeout a slow operation that's making progress (Howard Chu)340830de
Fix PR#2039 (Howard Chu)
This commit is contained in:
commit
f31b89012d
3 changed files with 55 additions and 11 deletions
|
@ -156,6 +156,7 @@ namespace net_utils
|
|||
const network_address m_remote_address;
|
||||
const bool m_is_income;
|
||||
const time_t m_started;
|
||||
bool m_in_timedsync;
|
||||
time_t m_last_recv;
|
||||
time_t m_last_send;
|
||||
uint64_t m_recv_cnt;
|
||||
|
@ -171,6 +172,7 @@ namespace net_utils
|
|||
m_remote_address(remote_address),
|
||||
m_is_income(is_income),
|
||||
m_started(time(NULL)),
|
||||
m_in_timedsync(false),
|
||||
m_last_recv(last_recv),
|
||||
m_last_send(last_send),
|
||||
m_recv_cnt(recv_cnt),
|
||||
|
@ -183,6 +185,7 @@ namespace net_utils
|
|||
m_remote_address(new ipv4_network_address(0,0)),
|
||||
m_is_income(false),
|
||||
m_started(time(NULL)),
|
||||
m_in_timedsync(false),
|
||||
m_last_recv(0),
|
||||
m_last_send(0),
|
||||
m_recv_cnt(0),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue