| 985 | } |
| 986 | |
| 987 | shared_SSL_CTX |
| 988 | SSLConfigParams::getCTX(const char *client_cert, const char *key_file, const char *ca_bundle_file, const char *ca_bundle_path) const |
| 989 | { |
| 990 | return this->getCTX(std::string(client_cert ? client_cert : ""), std::string(key_file ? key_file : ""), ca_bundle_file, |
| 991 | ca_bundle_path); |
| 992 | } |
| 993 | |
| 994 | shared_SSL_CTX |
| 995 | SSLConfigParams::getCTX(const std::string &client_cert, const std::string &key_file, const char *ca_bundle_file, |
no test coverage detected