| 1257 | } |
| 1258 | |
| 1259 | TSRemapStatus |
| 1260 | TSRemapDoRemap(void *instance, TSHttpTxn txnp, TSRemapRequestInfo * /* rri ATS_UNUSED */) |
| 1261 | { |
| 1262 | if (nullptr == instance) { |
| 1263 | info("No Rules configured, falling back to default"); |
| 1264 | } else { |
| 1265 | info("Remap Rules configured for compress"); |
| 1266 | Configuration *config = static_cast<Configuration *>(instance); |
| 1267 | // Handle compress request and use the configs populated from remap instance |
| 1268 | handle_request(txnp, config); |
| 1269 | } |
| 1270 | return TSREMAP_NO_REMAP; |
| 1271 | } |
nothing calls this directly
no test coverage detected