| 3922 | } |
| 3923 | |
| 3924 | int |
| 3925 | TSHttpTxnServerSsnTransactionCount(TSHttpTxn txnp) |
| 3926 | { |
| 3927 | sdk_assert(sdk_sanity_check_txn(txnp) == TS_SUCCESS); |
| 3928 | |
| 3929 | HttpSM *sm = reinterpret_cast<HttpSM *>(txnp); |
| 3930 | // Any value greater than zero indicates connection reuse. |
| 3931 | return sm->server_transact_count; |
| 3932 | } |
| 3933 | |
| 3934 | // Shortcut to just get the URL. |
| 3935 | // The caller is responsible to free memory that is allocated for the string |