* Construct a empty response. */
| 70 | * Construct a empty response. |
| 71 | */ |
| 72 | HttpResponse() : |
| 73 | m_httpVersion(), |
| 74 | m_statusCode(0U), |
| 75 | m_reasonPhrase(), |
| 76 | m_headers(), |
| 77 | m_payload(nullptr), |
| 78 | m_size(0U), |
| 79 | m_wrIndex(0U) |
| 80 | { |
| 81 | } |
| 82 | |
| 83 | /** |
| 84 | * Destroys the response. |
nothing calls this directly
no outgoing calls
no test coverage detected