| 24 | #include "Data.h" |
| 25 | |
| 26 | void |
| 27 | shutdown(TSCont const contp, Data *const data) |
| 28 | { |
| 29 | DEBUG_LOG("shutting down transaction"); |
| 30 | data->m_upstream.close(); |
| 31 | data->m_dnstream.close(); |
| 32 | TSContDataSet(contp, nullptr); |
| 33 | delete data; |
| 34 | TSContDestroy(contp); |
| 35 | } |
| 36 | |
| 37 | void |
| 38 | abort(TSCont const contp, Data *const data) |
no test coverage detected