| 90 | void setupWrite(); |
| 91 | |
| 92 | ~SContData() |
| 93 | { |
| 94 | Dbg(dbg_ctl, "[%s] Destroying continuation data", __FUNCTION__); |
| 95 | TSHttpParserDestroy(http_parser); |
| 96 | if (req_hdr_loc) { |
| 97 | TSHandleMLocRelease(req_hdr_bufp, TS_NULL_MLOC, req_hdr_loc); |
| 98 | } |
| 99 | if (req_hdr_bufp) { |
| 100 | TSMBufferDestroy(req_hdr_bufp); |
| 101 | } |
| 102 | }; |
| 103 | }; |
| 104 | |
| 105 | bool |
nothing calls this directly
no test coverage detected