| 35 | } |
| 36 | |
| 37 | void |
| 38 | abort(TSCont const contp, Data *const data) |
| 39 | { |
| 40 | DEBUG_LOG("aborting transaction"); |
| 41 | data->m_upstream.abort(); |
| 42 | data->m_dnstream.abort(); |
| 43 | TSContDataSet(contp, nullptr); |
| 44 | delete data; |
| 45 | TSContDestroy(contp); |
| 46 | } |
| 47 | |
| 48 | // create and issue a block request |
| 49 | bool |
no test coverage detected