| 282 | } |
| 283 | |
| 284 | int |
| 285 | global_read_request_hook(TSCont // contp |
| 286 | , |
| 287 | TSEvent // event |
| 288 | , |
| 289 | void *edata) |
| 290 | { |
| 291 | TSHttpTxn const txnp = static_cast<TSHttpTxn>(edata); |
| 292 | read_request(txnp, &globalConfig, global_read_resp_hdr_contp); |
| 293 | TSHttpTxnReenable(txnp, TS_EVENT_HTTP_CONTINUE); |
| 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | } // namespace |
| 298 |
nothing calls this directly
no test coverage detected