MCPcopy Create free account
hub / github.com/JosephP91/curlcpp / get_ssl_version

Method get_ssl_version

include/curl_info.h:116–121  ·  view source on GitHub ↗

Implementation of get_ssl_version.

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected