| 32 | }; |
| 33 | |
| 34 | void BasicHttpHeaders::clear() |
| 35 | { |
| 36 | http_parser_init(&parser, HTTP_BOTH); |
| 37 | parser.data = this; |
| 38 | count_ = 0; |
| 39 | } |
| 40 | |
| 41 | HttpError BasicHttpHeaders::parse(char* data, size_t len, http_parser_type type) |
| 42 | { |
no outgoing calls
no test coverage detected