SSL HTTP client implementation
| 7963 | |
| 7964 | // SSL HTTP client implementation |
| 7965 | inline SSLClient::SSLClient(const std::string &host) |
| 7966 | : SSLClient(host, 443, std::string(), std::string()) {} |
| 7967 | |
| 7968 | inline SSLClient::SSLClient(const std::string &host, int port) |
| 7969 | : SSLClient(host, port, std::string(), std::string()) {} |