| 48 | }; |
| 49 | |
| 50 | void i_HttpClient::FinishDownload(HttpDownload *transfer) { |
| 51 | /* send the response back to the Driver for processing */ |
| 52 | Driver::EventMsg *event = new Driver::EventMsg(); |
| 53 | event->type = Driver::EventMsg::Event_Http; |
| 54 | event->event.httpdownload = transfer; |
| 55 | this->m_driver->SubmitEventMsg(event); |
| 56 | } |
| 57 | |
| 58 | |
| 59 |
no test coverage detected