mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
connection_context: initialize m_last_request_time to current time
This prevents spurious early peer drops
This commit is contained in:
parent
ed67e5c001
commit
b81e276cab
1 changed files with 1 additions and 1 deletions
|
@ -40,7 +40,7 @@ namespace cryptonote
|
|||
struct cryptonote_connection_context: public epee::net_utils::connection_context_base
|
||||
{
|
||||
cryptonote_connection_context(): m_state(state_before_handshake), m_remote_blockchain_height(0), m_last_response_height(0),
|
||||
m_callback_request_count(0), m_last_known_hash(crypto::null_hash) {}
|
||||
m_last_request_time(boost::posix_time::microsec_clock::universal_time()), m_callback_request_count(0), m_last_known_hash(crypto::null_hash) {}
|
||||
|
||||
enum state
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue