| 2628 | } |
| 2629 | |
| 2630 | void ECNotifier::DownloadFile_RemoveFile(const CPartFile *file) |
| 2631 | { |
| 2632 | for(std::map<CECServerSocket *, ECUpdateMsgSource **>::iterator i = m_msg_source.begin(); |
| 2633 | i != m_msg_source.end(); ++i) { |
| 2634 | ECUpdateMsgSource **notifier_array = i->second; |
| 2635 | static_cast<ECPartFileMsgSource *>(notifier_array[EC_PARTFILE])->SetRemoved(file); |
| 2636 | } |
| 2637 | NextPacketToSocket(); |
| 2638 | } |
| 2639 | |
| 2640 | void ECNotifier::DownloadFile_RemoveSource(const CPartFile *) |
| 2641 | { |
no test coverage detected