SSL HTTP client implementation
| 8351 | |
| 8352 | // SSL HTTP client implementation |
| 8353 | inline SSLClient::SSLClient(const std::string &host) |
| 8354 | : SSLClient(host, 443, std::string(), std::string()) {} |
| 8355 | |
| 8356 | inline SSLClient::SSLClient(const std::string &host, int port) |
| 8357 | : SSLClient(host, port, std::string(), std::string()) {} |