bool CKademlia::FindIPByNodeID(CKadClientSearcher& requester, const uint8_t* nodeID) { wxCHECK(IsRunning() && instance && GetUDPListener(), false); // first search our known contacts if we can deliver a result without asking, otherwise forward the request CContact* contact; if ((contact = GetRoutingZone()->GetContact(CUInt128(nodeID))) != NULL) { // make sure that this entry is not too old, otherwise just do a search to be sure if (contact->GetLastSeen() != 0 && time(NULL) - contact->GetLastSeen() < 1800) { requester.KadSearchIPByNodeIDResult(KCSR_SUCCEEDED, wxUINT32_SWAP_ALWAYS(contact->GetIPAddress()), contact->GetTCPPort()); return true; } } return CSearchManager::FindNodeSpecial(CUInt128(nodeID), &requester); }
bool CKademlia::FindIPByNodeID(CKadClientSearcher& rRequester, const uchar* pachNodeID){ if (!IsRunning() || m_pInstance == NULL || GetUDPListener() == NULL){ ASSERT( false ); return false; } // first search our known contacts if we can deliver a result without asking, otherwise forward the request CContact* pContact; if ((pContact = GetRoutingZone()->GetContact(CUInt128(pachNodeID))) != NULL){ // make sure that this entry is not too old, otherwise just do a search to be sure if (pContact->GetLastSeen() != 0 && time(NULL) - pContact->GetLastSeen() < 1800){ rRequester.KadSearchIPByNodeIDResult(KCSR_SUCCEEDED, ntohl(pContact->GetIPAddress()), pContact->GetTCPPort()); return true; } } return CSearchManager::FindNodeSpecial(CUInt128(pachNodeID), &rRequester); }