| 35 | } |
| 36 | |
| 37 | void HttpMessage::AppendHeadersToString(std::string* result) const { |
| 38 | AppendStartLineToString(result); |
| 39 | result->append("\r\n"); |
| 40 | m_headers.AppendToString(result); |
| 41 | result->append("\r\n"); |
| 42 | } |
| 43 | |
| 44 | void HttpMessage::HeadersToString(std::string* result) const { |
| 45 | result->clear(); |
nothing calls this directly
no test coverage detected