| 56 | |
| 57 | |
| 58 | void cHTTPConnection::Send(const cHTTPResponse & a_Response) |
| 59 | { |
| 60 | ASSERT(m_State == wcsRecvIdle); |
| 61 | a_Response.AppendToData(m_OutgoingData); |
| 62 | m_State = wcsSendingResp; |
| 63 | m_HTTPServer.NotifyConnectionWrite(*this); |
| 64 | } |
| 65 | |
| 66 | |
| 67 |
no test coverage detected