| 25 | namespace ats |
| 26 | { |
| 27 | void |
| 28 | HttpParser::destroyParser() |
| 29 | { |
| 30 | if (parser_ != nullptr) { |
| 31 | TSHttpParserClear(parser_); |
| 32 | TSHttpParserDestroy(parser_); |
| 33 | parser_ = nullptr; |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | bool |
| 38 | HttpParser::parse(io::IO &io) |
nothing calls this directly
no test coverage detected