| 298 | } |
| 299 | |
| 300 | std::string |
| 301 | SessionData::get_server_protocol_description(TSHttpTxn server_txnp) |
| 302 | { |
| 303 | return get_protocol_stack_helper( |
| 304 | [&server_txnp](int n, const char **result, int *actual) { |
| 305 | return TSHttpTxnServerProtocolStackGet(server_txnp, n, result, actual); |
| 306 | }, |
| 307 | [&server_txnp]() { return get_server_tls_description(server_txnp); }, [](std::string_view /* http_version ATS_UNUSED */) {}); |
| 308 | } |
| 309 | |
| 310 | SessionData::SessionData() |
| 311 | { |
no test coverage detected