| 45 | namespace ats |
| 46 | { |
| 47 | void |
| 48 | HttpParser::destroyParser() |
| 49 | { |
| 50 | if (parser_ != nullptr) { |
| 51 | TSHttpParserClear(parser_); |
| 52 | TSHttpParserDestroy(parser_); |
| 53 | parser_ = nullptr; |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | bool |
| 58 | HttpParser::parse(io::IO &io) |
nothing calls this directly
no test coverage detected