SSL HTTP client implementation
| 7522 | |
| 7523 | // SSL HTTP client implementation |
| 7524 | inline SSLClient::SSLClient(const std::string & host) |
| 7525 | : SSLClient(host, 443, std::string(), std::string()) {} |
| 7526 | |
| 7527 | inline SSLClient::SSLClient(const std::string & host, int port) |
| 7528 | : SSLClient(host, port, std::string(), std::string()) {} |