| 597 | } |
| 598 | |
| 599 | void |
| 600 | HttpTunnel::kill_tunnel() |
| 601 | { |
| 602 | for (auto &producer : producers) { |
| 603 | if (producer.vc != nullptr) { |
| 604 | chain_abort_all(&producer); |
| 605 | } |
| 606 | ink_assert(producer.alive == false); |
| 607 | } |
| 608 | active = false; |
| 609 | this->mark_tls_tunnel_inactive(); |
| 610 | this->deallocate_buffers(); |
| 611 | this->reset(); |
| 612 | } |
| 613 | |
| 614 | void |
| 615 | HttpTunnel::abort_tunnel() |
no test coverage detected