| 68 | uint32_t enabled_hooks = 0; // Which hooks are enabled, other than the mandatory ones |
| 69 | |
| 70 | [[nodiscard]] bool |
| 71 | Aborted() const |
| 72 | { |
| 73 | bool client_abort = false; |
| 74 | |
| 75 | if (TSHttpTxnAborted(txnp, &client_abort) == TS_SUCCESS) { |
| 76 | return client_abort; |
| 77 | } |
| 78 | |
| 79 | return false; |
| 80 | } |
| 81 | |
| 82 | [[nodiscard]] int |
| 83 | LookupStatus() const |
no test coverage detected