cryptonote_protocol: fix recv/send idle time before handshake

release-v0.4.0.1
moneromooo-monero 7 years ago
parent 181a008aa3
commit 0e8d60c06c
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -209,10 +209,10 @@ namespace cryptonote
cnx.support_flags = support_flags;
cnx.recv_count = cntxt.m_recv_cnt;
cnx.recv_idle_time = timestamp - cntxt.m_last_recv;
cnx.recv_idle_time = timestamp - std::max(cntxt.m_started, cntxt.m_last_recv);
cnx.send_count = cntxt.m_send_cnt;
cnx.send_idle_time = timestamp - cntxt.m_last_send;
cnx.send_idle_time = timestamp - std::max(cntxt.m_started, cntxt.m_last_send);
cnx.state = get_protocol_state_string(cntxt.m_state);

Loading…
Cancel
Save