| 439 | |
| 440 | |
| 441 | CUpDownClient* CClientList::FindClientByECID(uint32 ecid) const |
| 442 | { |
| 443 | for (IDMap::const_iterator it = m_clientList.begin(); it != m_clientList.end(); ++it) { |
| 444 | if (it->second.ECID() == ecid) { |
| 445 | return it->second.GetClient(); |
| 446 | } |
| 447 | } |
| 448 | |
| 449 | return NULL; |
| 450 | } |
| 451 | |
| 452 | |
| 453 | bool CClientList::IsIPAlreadyKnown(uint32_t ip) |
no test coverage detected