| 32 | #define PLUGIN_NAME "thread_1" |
| 33 | |
| 34 | static void * |
| 35 | reenable_txn(void *data) |
| 36 | { |
| 37 | TSHttpTxn txnp = static_cast<TSHttpTxn>(data); |
| 38 | TSHttpTxnReenable(txnp, TS_EVENT_HTTP_CONTINUE); |
| 39 | return nullptr; |
| 40 | } |
| 41 | |
| 42 | static int |
| 43 | thread_plugin(TSCont contp ATS_UNUSED, TSEvent event, void *edata) |
nothing calls this directly
no test coverage detected