Searched refs:GetUDPPort (Results 1 - 20 of 20) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/kademlia/kademlia/
H A DSearch.cpp320 if ((tmpContact->GetIPAddress() == fromIP) && (tmpContact->GetUDPPort() == fromPort)) {
475 DebugSend(Kad2SearchSourceReq, from->GetIPAddress(), from->GetUDPPort());
478 CKademlia::GetUDPListener()->SendPacket(searchTerms, KADEMLIA2_SEARCH_SOURCE_REQ, from->GetIPAddress(), from->GetUDPPort(), from->GetUDPKey(), &clientID);
480 CKademlia::GetUDPListener()->SendPacket(searchTerms, KADEMLIA2_SEARCH_SOURCE_REQ, from->GetIPAddress(), from->GetUDPPort(), 0, NULL);
489 DebugSendF(wxT("KadSearchReq(File)"), from->GetIPAddress(), from->GetUDPPort());
490 CKademlia::GetUDPListener()->SendPacket(searchTerms, KADEMLIA_SEARCH_REQ, from->GetIPAddress(), from->GetUDPPort(), 0, NULL);
508 DebugSend(Kad2SearchKeyReq, from->GetIPAddress(), from->GetUDPPort());
519 DebugSendF(wxT("KadSearchReq(Keyword)"), from->GetIPAddress(), from->GetUDPPort());
523 CKademlia::GetUDPListener()->SendPacket(searchTerms, KADEMLIA2_SEARCH_KEY_REQ, from->GetIPAddress(), from->GetUDPPort(), from->GetUDPKey(), &clientID);
525 CKademlia::GetUDPListener()->SendPacket(searchTerms, KADEMLIA2_SEARCH_KEY_REQ, from->GetIPAddress(), from->GetUDPPort(),
[all...]
H A DKademlia.cpp213 DebugSend(Kad2Ping, contact->GetIPAddress(), contact->GetUDPPort());
214 GetUDPListener()->SendNullPacket(KADEMLIA2_PING, contact->GetIPAddress(), contact->GetUDPPort(), contact->GetUDPKey(), &contact->GetClientID());
288 instance->m_udpListener->Bootstrap(contact->GetIPAddress(), contact->GetUDPPort(), contact->GetVersion(), &contact->GetClientID());
H A DPrefs.h114 uint16_t GetInternKadPort() const throw() { return thePrefs::GetUDPPort(); }
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/kademlia/routing/
H A DRoutingBin.cpp84 if (!CheckGlobalIPLimits(contact->GetIPAddress(), contact->GetUDPPort())) {
90 AddDebugLogLineN(logKadRouting, wxT("Ignored kad contact (IP=") + KadIPPortToString(contact->GetIPAddress(), contact->GetUDPPort()) + wxT(") - too many contact with the same subnet in RoutingBin"));
122 if ((ip == c->GetIPAddress()) && (port == c->GetUDPPort())) {
148 && ((!tcpPort && port == contact->GetUDPPort()) || (tcpPort && port == contact->GetTCPPort()) || port == 0)) {
H A DRoutingZone.cpp330 file.WriteUInt16(c->GetUDPPort());
378 file.WriteUInt16(contact->GetUDPPort());
455 if (contactUpdate->GetIPAddress() == contact->GetIPAddress() && contactUpdate->GetTCPPort() == contact->GetTCPPort() && contactUpdate->GetVersion() == contact->GetVersion() && contactUpdate->GetUDPPort() == contact->GetUDPPort()) {
486 contactUpdate->SetUDPPort(contact->GetUDPPort());
797 DebugSend(Kad2HelloReq, c->GetIPAddress(), c->GetUDPPort());
799 CKademlia::GetUDPListener()->SendMyDetails(KADEMLIA2_HELLO_REQ, c->GetIPAddress(), c->GetUDPPort(), c->GetVersion(), c->GetUDPKey(), &clientID, false);
811 DebugSend(Kad2HelloReq, c->GetIPAddress(), c->GetUDPPort());
812 CKademlia::GetUDPListener()->SendMyDetails(KADEMLIA2_HELLO_REQ, c->GetIPAddress(), c->GetUDPPort(), c->GetVersion(), 0, NULL, false);
908 if ((duplicate->IsIPVerified() && duplicate->GetIPAddress() != toCheck->GetIPAddress()) || duplicate->GetUDPPort() !
[all...]
H A DContact.h74 uint16_t GetUDPPort() const throw() { return m_udpPort; } function in class:Kademlia::CContact
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DClientRef.cpp178 uint16 WRAPC(GetUDPPort)
H A DClientRef.h151 uint16 GetUDPPort() const;
H A DClientList.cpp862 pNewClient->SetKadPort(contact->GetUDPPort());
895 pNewClient->SetKadPort(contact->GetUDPPort());
924 pNewClient->SetKadPort(contact->GetUDPPort());
1133 return GetBuddy()->GetUDPPort();
H A DServerWnd.cpp219 wxString(CFormat(_("Firewalled - open UDP port %d in your router or firewall")) % thePrefs::GetUDPPort())
H A Damule.cpp699 if (thePrefs::GetUDPPort() == thePrefs::GetPort() + 3) {
701 uint16 port = thePrefs::GetUDPPort();
784 myaddr[3].Service(thePrefs::GetUDPPort());
788 % ip % thePrefs::GetUDPPort();
H A DPreferences.h213 static uint16 GetUDPPort() { return s_udpport; } function in class:CPreferences
H A DUploadQueue.cpp362 if ((dwIP == cur_client->GetIP()) && (nUDPPort == cur_client->GetUDPPort())) {
H A Dupdownclient.h193 uint16 GetUDPPort() const { return m_nUDPPort; } function in class:CUpDownClient
H A DECSpecialMuleTags.cpp111 connPrefs.AddTag(CECTag(EC_TAG_CONN_UDP_PORT, thePrefs::GetUDPPort()));
H A DDownloadClient.cpp1309 theApp->clientudp->SendPacket(response,GetConnectIP(),GetUDPPort(), ShouldReceiveCryptUDPPackets(), GetUserHash().GetHash(), false, 0);
H A DDownloadQueue.cpp840 if ( it->GetIP() == dwIP && it->GetUDPPort() == nUDPPort ) {
H A DBaseClient.cpp1084 ((uint32)theApp->clientlist->GetBuddy()->GetUDPPort() )
H A DExternalConn.cpp609 BuddyPort = Buddy->GetUDPPort();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/kademlia/net/
H A DKademliaUDPListener.cpp200 DebugSend(Kad2PublishSrcReq, contact.GetIPAddress(), contact.GetUDPPort());
207 DebugSend(KadPublishReq, contact.GetIPAddress(), contact.GetUDPPort());
211 SendPacket(packetdata, opcode, contact.GetIPAddress(), contact.GetUDPPort(), contact.GetUDPKey(), &clientID);
213 SendPacket(packetdata, opcode, contact.GetIPAddress(), contact.GetUDPPort(), 0, NULL);
476 packetdata.WriteUInt16(contact->GetUDPPort());
677 packetdata.WriteUInt16(c->GetUDPPort());

Completed in 228 milliseconds