| 15 | ResponseParser::ResponseParser() : state_(http_version_h) {} |
| 16 | |
| 17 | void ResponseParser::reset() { |
| 18 | state_ = http_version_h; |
| 19 | lowcase = Header{}; |
| 20 | } |
| 21 | |
| 22 | ResponseParser::state ResponseParser::consume(ResponseHeader &req, char input) { |
| 23 | switch (state_) { |
nothing calls this directly
no outgoing calls
no test coverage detected