Create a client-side TLS characteristics node. * * @param[in] ssnp The pointer for this session. * * @return The node describing the TLS properties of this session. */
| 128 | * @return The node describing the TLS properties of this session. |
| 129 | */ |
| 130 | std::string |
| 131 | get_client_tls_description(TSHttpSsn ssnp) |
| 132 | { |
| 133 | TSVConn client_ssn_vc = TSHttpSsnClientVConnGet(ssnp); |
| 134 | return get_tls_description_helper(client_ssn_vc); |
| 135 | } |
| 136 | |
| 137 | /** Create a server-side TLS characteristics node. |
| 138 | * |
no test coverage detected