MCPcopy Create free account
hub / github.com/apache/trafficserver / get_client_protocol_description

Method get_client_protocol_description

plugins/traffic_dump/session_data.cc:289–298  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

287}
288
289std::string
290SessionData::get_client_protocol_description(TSHttpSsn client_ssnp)
291{
292 return get_protocol_stack_helper(
293 [&client_ssnp](int n, const char **result, int *actual) {
294 return TSHttpSsnClientProtocolStackGet(client_ssnp, n, result, actual);
295 },
296 [&client_ssnp]() { return get_client_tls_description(client_ssnp); },
297 [this](std::string_view http_version) { this->http_version_in_client_stack = http_version; });
298}
299
300std::string
301SessionData::get_server_protocol_description(TSHttpTxn server_txnp)

Callers 1

Calls 2

Tested by

no test coverage detected