| 304 | ///// remap plugin engine |
| 305 | |
| 306 | TSRemapStatus |
| 307 | TSRemapDoRemap(void *ih, TSHttpTxn txnp, TSRemapRequestInfo * /* rri ATS_UNUSED */) |
| 308 | { |
| 309 | PluginInfo *const info = static_cast<PluginInfo *>(ih); |
| 310 | |
| 311 | if (read_request(txnp, &info->config, info->read_resp_hdr_contp)) { |
| 312 | return TSREMAP_DID_REMAP_STOP; |
| 313 | } else { |
| 314 | return TSREMAP_NO_REMAP; |
| 315 | } |
| 316 | } |
| 317 | |
| 318 | ///// remap plugin setup and teardown |
| 319 | void |
nothing calls this directly
no test coverage detected