Returns unique client session identifier
| 8662 | |
| 8663 | // Returns unique client session identifier |
| 8664 | int64_t |
| 8665 | TSHttpSsnIdGet(TSHttpSsn ssnp) |
| 8666 | { |
| 8667 | sdk_assert(sdk_sanity_check_http_ssn(ssnp) == TS_SUCCESS); |
| 8668 | ProxySession const *cs = reinterpret_cast<ProxySession *>(ssnp); |
| 8669 | return cs->connection_id(); |
| 8670 | } |
| 8671 | |
| 8672 | // Return information about the protocols used by the client |
| 8673 | TSReturnCode |
no test coverage detected