Searched refs:m_lastContact (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/kademlia/kademlia/
H A DPrefs.h71 bool HasHadContact() const throw() { return m_lastContact ? ((time(NULL) - m_lastContact) < KADEMLIADISCONNECTDELAY) : false; }
72 void SetLastContact() throw() { m_lastContact = time(NULL); }
73 bool HasLostConnection() const throw() { return m_lastContact ? !((time(NULL) - m_lastContact) < KADEMLIADISCONNECTDELAY) : false; }
74 uint32_t GetLastContact() const throw() { return m_lastContact; }
130 time_t m_lastContact; member in class:Kademlia::CPrefs
H A DPrefs.cpp76 m_lastContact = 0;

Completed in 110 milliseconds