| 7455 | } |
| 7456 | |
| 7457 | inline void |
| 7458 | HttpSM::transform_cleanup(TSHttpHookID hook, HttpTransformInfo *info) |
| 7459 | { |
| 7460 | APIHook *t_hook = api_hooks.get(hook); |
| 7461 | if (t_hook && info->vc == nullptr) { |
| 7462 | do { |
| 7463 | VConnection *t_vcon = t_hook->m_cont; |
| 7464 | t_vcon->do_io_close(); |
| 7465 | t_hook = t_hook->m_link.next; |
| 7466 | } while (t_hook != nullptr); |
| 7467 | } |
| 7468 | } |
| 7469 | |
| 7470 | void |
| 7471 | HttpSM::plugin_agents_cleanup() |
nothing calls this directly
no test coverage detected