| 197 | } |
| 198 | |
| 199 | void |
| 200 | Transaction::setStatusCode(HttpStatus code) |
| 201 | { |
| 202 | LOG_DEBUG("Transaction tshttptxn=%p setting status code: %d", state_->txn_, code); |
| 203 | TSHttpTxnStatusSet(state_->txn_, static_cast<TSHttpStatus>(code)); |
| 204 | } |
| 205 | |
| 206 | bool |
| 207 | Transaction::isInternalRequest() const |
nothing calls this directly
no test coverage detected