Implementation of get_ssl_version.
| 114 | |
| 115 | // Implementation of get_ssl_version. |
| 116 | inline std::string curl_info::get_ssl_version() const NOEXCEPT { |
| 117 | if (this->version->ssl_version == nullptr) { |
| 118 | return std::string(""); |
| 119 | } |
| 120 | return std::string(this->version->ssl_version); |
| 121 | } |
| 122 | |
| 123 | // Implementation of get_libz_version. |
| 124 | inline std::string curl_info::get_libz_version() const NOEXCEPT { |
nothing calls this directly
no outgoing calls
no test coverage detected