| 53 | } |
| 54 | |
| 55 | void HttpMessage::AppendToString(std::string* result) const { |
| 56 | AppendHeadersToString(result); |
| 57 | result->append(m_body); |
| 58 | } |
| 59 | |
| 60 | void HttpMessage::ToString(std::string* result) const { |
| 61 | result->clear(); |
no outgoing calls
no test coverage detected