| 6568 | } |
| 6569 | |
| 6570 | int |
| 6571 | TSHttpTxnRedirectRetries(TSHttpTxn txnp) |
| 6572 | { |
| 6573 | sdk_assert(sdk_sanity_check_txn(txnp) == TS_SUCCESS); |
| 6574 | |
| 6575 | HttpSM *sm = reinterpret_cast<HttpSM *>(txnp); |
| 6576 | |
| 6577 | return sm->redirection_tries; |
| 6578 | } |
| 6579 | |
| 6580 | char * |
| 6581 | TSFetchRespGet(TSHttpTxn txnp, int *length) |
no test coverage detected