Searched refs:clientlist (Results 1 - 25 of 27) sorted by relevance

12

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/
H A DCorruptionBlackBox.cpp210 CUpDownClient* pEvilClient = theApp->clientlist->FindClientByIP(ip);
216 theApp->clientlist->AddTrackClient(pEvilClient);
225 theApp->clientlist->AddBannedClient(ip);
230 CUpDownClient* pSuspectClient = theApp->clientlist->FindClientByIP(ip);
234 theApp->clientlist->AddTrackClient(pSuspectClient);
H A DClientUDPSocket.cpp45 #include "ClientList.h" // Needed for clientlist (buddy support)
146 CUpDownClient* buddy = theApp->clientlist->GetBuddy();
281 if (!theApp->clientlist->AllowCallbackRequest(host)) {
287 theApp->clientlist->AddTrackCallbackRequests(host);
293 CClientList::SourceList clients = theApp->clientlist->GetClientsByHash(userHash);
303 theApp->clientlist->AddClient(requester);
H A DChatSelector.cpp64 theApp->clientlist->SetChatState(m_client_id,MS_NONE);
247 if (theApp->clientlist->SendChatMessage(ci->m_client_id, message)) {
355 clientref.Link(theApp->clientlist->FindClientByIP(IP_FROM_GUI_ID(ci->m_client_id), PORT_FROM_GUI_ID(ci->m_client_id)) CLIENT_DEBUGSTRING("CChatSelector::GetCurrentClient"));
H A DUploadQueue.cpp397 CClientList::SourceList found = theApp->clientlist->GetClientsByHash( client->GetUserHash() );
437 theApp->clientlist->AddTrackClient( cur_client );
449 theApp->clientlist->AddTrackClient( client );
464 found = theApp->clientlist->GetClientsByIP( client->GetIP() );
476 } else if ( theApp->clientlist->GetClientsFromIP(client->GetIP()) >= 3 ) {
525 theApp->clientlist->AddTrackClient(client);
H A DFriendList.cpp218 theApp->clientlist->AddClient(client);
244 theApp->clientlist->AddClient(client);
H A DUploadClient.cpp773 theApp->clientlist->AddTrackClient(this);
774 theApp->clientlist->RemoveBannedClient( GetIP() );
780 theApp->clientlist->AddTrackClient(this);
781 theApp->clientlist->AddBannedClient( GetIP() );
792 return ( (theApp->clientlist->IsBannedClient(GetIP()) ) && m_nDownloadState != DS_DOWNLOADING);
H A Damule.cpp181 clientlist = NULL;
304 delete clientlist;
305 clientlist = NULL;
502 clientlist = new CClientList();
1196 clientlist->Process();
1424 if (clientlist) {
1425 clientlist->DeleteAll();
1723 return clientlist->GetBuddyStatus();
1728 return clientlist->GetBuddyIP();
1733 return clientlist
[all...]
H A DBaseClient.cpp410 // Remove the client from the clientlist if we still have it
411 if ( theApp->clientlist ) {
412 theApp->clientlist->RemoveClient( this );
690 if (!theApp->clientlist->ComparePriorUserhash(m_dwUserIP, m_nUserPort, pFoundCredits)){
1044 if( theApp->clientlist->GetBuddy() && theApp->IsFirewalled() ) {
1078 if( theApp->clientlist->GetBuddy() && theApp->IsFirewalled() ) {
1079 CTagVarInt tagBuddyIP(CT_EMULE_BUDDYIP, theApp->clientlist->GetBuddy()->GetIP(), GetVBTTags() ? 0 : 32);
1084 ((uint32)theApp->clientlist->GetBuddy()->GetUDPPort() )
1265 //wxASSERT(theApp->clientlist->IsValidClient(this));
1274 theApp->clientlist
[all...]
H A DClientTCPSocket.cpp181 } else if (theApp->clientlist->IsBannedClient(m_remoteip)) {
394 if (theApp->clientlist->AttachToAlreadyKnown(&m_client,this)) {
398 theApp->clientlist->AddClient(m_client);
1657 callback = theApp->clientlist->FindClientByIP(wxUINT32_SWAP_ALWAYS(ip), tcp);
1661 theApp->clientlist->AddClient(callback);
1671 CUpDownClient* buddy = theApp->clientlist->GetBuddy();
1688 CUpDownClient* buddy = theApp->clientlist->GetBuddy();
1699 CUpDownClient* buddy = theApp->clientlist->GetBuddy();
1806 if (theApp->clientlist->IsKadFirewallCheckIP(m_client->GetIP())) {
H A DMuleUDPSocket.cpp175 } else if (theApp->clientlist->IsBannedClient(ip)) {
H A DServerSocket.cpp557 CUpDownClient* client = theApp->clientlist->FindClientByIP(dwIP,nPort);
561 theApp->clientlist->AddClient(client);
H A DDownloadQueue.cpp624 if ( theApp->clientlist->IsDeadSource( source ) || sender->IsDeadSource(source) ) {
637 CClientList::SourceList found = theApp->clientlist->GetClientsByHash( source->GetUserHash() );
669 if ( theApp->clientlist->AttachToAlreadyKnown(&source, 0) ) {
692 theApp->clientlist->AddClient(source);
H A DExternalConn.cpp603 response->AddTag(CECTag(EC_TAG_STATS_BUDDY_STATUS, theApp->clientlist->GetBuddyStatus()));
606 CUpDownClient * Buddy = theApp->clientlist->GetBuddy();
681 const CClientList::IDMap& clientList = theApp->clientlist->GetClientList();
943 CUpDownClient * client = theApp->clientlist->FindClientByECID(subtag->GetInt());
990 CUpDownClient * client = theApp->clientlist->FindClientByECID(subtag->GetInt());
1474 CUpDownClient * client = theApp->clientlist->FindClientByECID(idClient);
1612 theApp->clientlist->FilterQueues();
H A Damule.h252 CClientList* clientlist; member in class:CamuleApp
H A DIPFilter.cpp536 theApp->clientlist->FilterQueues();
H A Damule-remote-gui.cpp358 clientlist = new CUpDownClientListRem(m_connect);
1096 theApp->clientlist->ProcessUpdate(curTag, NULL, EC_TAG_CLIENT);
1671 CClientRef * src = theApp->clientlist->GetByID(id);
1684 CClientRef * src = theApp->clientlist->GetByID(id);
1823 CClientRef * client = theApp->clientlist->GetByID(clientID);
H A Damule-remote-gui.h666 CUpDownClientListRem *clientlist; member in class:CamuleRemoteGuiApp
H A DEncryptedStreamSocket.cpp283 && !theApp->clientlist->IsKadFirewallCheckIP(ip)) )
H A DKnownFile.cpp51 #include "ClientList.h" // Needed for clientlist (buddy support)
1313 CUpDownClient* buddy = theApp->clientlist->GetBuddy();
1315 lastBuddyIP = theApp->clientlist->GetBuddy()->GetIP();
H A DSharedFileList.cpp775 if( Kademlia::CKademlia::IsConnected() && ( !IsFirewalled || ( IsFirewalled && theApp->clientlist->GetBuddyStatus() == Connected)) && GetCount() && Kademlia::CKademlia::GetPublish()) {
H A DPrefsUnifiedDlg.cpp667 theApp->clientlist->FilterQueues();
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/kademlia/kademlia/
H A DUDPFirewallTester.cpp251 // ok, tell the clientlist to do the same search and start the check if ok
252 if (theApp->clientlist->DoRequestFirewallCheckUDP(curContact)) {
H A DSearch.cpp609 } else if (theApp->clientlist->GetBuddy()) { // We are firewalled, make sure we have a buddy.
614 taglist.push_back(new CTagVarInt(TAG_SERVERIP, theApp->clientlist->GetBuddy()->GetIP()));
615 taglist.push_back(new CTagVarInt(TAG_SERVERPORT, theApp->clientlist->GetBuddy()->GetUDPPort()));
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/aMule-2.3.1/src/kademlia/net/
H A DKademliaUDPListener.cpp182 theApp->clientlist->AddKadFirewallRequest(wxUINT32_SWAP_ALWAYS(ip));
1361 if (!theApp->clientlist->RequestTCP(&contact, 0)) {
1386 if (!theApp->clientlist->RequestTCP(&contact, connectOptions)) {
1404 if (!theApp->clientlist->IsKadFirewallCheckIP(wxUINT32_SWAP_ALWAYS(ip))) { /* KADEMLIA_FIREWALLED2_REQ + KADEMLIA_FIREWALLED_REQ */
1442 } else if (theApp->clientlist->GetBuddyStatus() == Connected) {
1454 if (!theApp->clientlist->IncomingBuddy(&contact, &BuddyID)) {
1492 theApp->clientlist->RequestBuddy(&contact, connectOptions);
1503 CUpDownClient* buddy = theApp->clientlist->GetBuddy();
1684 CClientList::SourceList clientslist = theApp->clientlist->GetClientsByIP(ip);
H A DPacketTracking.cpp215 theApp->clientlist->AddBannedClient(wxUINT32_SWAP_ALWAYS(ip));

Completed in 283 milliseconds

12