| 233 | } |
| 234 | |
| 235 | InterceptData::~InterceptData() |
| 236 | { |
| 237 | if (req_hdr_loc) { |
| 238 | TSHandleMLocRelease(req_hdr_bufp, TS_NULL_MLOC, req_hdr_loc); |
| 239 | } |
| 240 | if (req_hdr_bufp) { |
| 241 | TSMBufferDestroy(req_hdr_bufp); |
| 242 | } |
| 243 | if (fetcher) { |
| 244 | delete fetcher; |
| 245 | } |
| 246 | TSHttpParserDestroy(http_parser); |
| 247 | if (net_vc) { |
| 248 | TSVConnClose(net_vc); |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | void |
| 253 | CacheControlHeader::update(TSMBuffer bufp, TSMLoc hdr_loc) |
nothing calls this directly
no test coverage detected