| 57 | } |
| 58 | |
| 59 | HttpParser() : parser_(TSHttpParserCreate()), buffer_(TSMBufferCreate()), location_(TSHttpHdrCreate(buffer_)) |
| 60 | { |
| 61 | TSHttpHdrTypeSet(buffer_, location_, TS_HTTP_TYPE_RESPONSE); |
| 62 | } |
| 63 | |
| 64 | bool parse(io::IO &); |
| 65 |
nothing calls this directly
no test coverage detected