| 3736 | } |
| 3737 | |
| 3738 | int |
| 3739 | TSHttpSsnTransactionCount(TSHttpSsn ssnp) |
| 3740 | { |
| 3741 | sdk_assert(sdk_sanity_check_http_ssn(ssnp) == TS_SUCCESS); |
| 3742 | |
| 3743 | ProxySession *cs = reinterpret_cast<ProxySession *>(ssnp); |
| 3744 | return cs->get_transact_count(); |
| 3745 | } |
| 3746 | |
| 3747 | TSVConn |
| 3748 | TSHttpSsnClientVConnGet(TSHttpSsn ssnp) |
no test coverage detected