| 353 | |
| 354 | |
| 355 | bool CUploadQueue::IsDownloading(const CUpDownClient* client) const |
| 356 | { |
| 357 | for (CClientRefList::const_iterator it = m_uploadinglist.begin(); it != m_uploadinglist.end(); ++it) { |
| 358 | if (it->GetClient() == client) { |
| 359 | return true; |
| 360 | } |
| 361 | } |
| 362 | return false; |
| 363 | } |
| 364 | |
| 365 | |
| 366 | CUpDownClient* CUploadQueue::GetWaitingClientByIP_UDP(uint32 dwIP, uint16 nUDPPort, bool bIgnorePortOnUniqueIP, bool* pbMultipleIPs) |
no test coverage detected