SSL HTTP client implementation
| 9156 | |
| 9157 | // SSL HTTP client implementation |
| 9158 | inline SSLClient::SSLClient(const std::string &host) |
| 9159 | : SSLClient(host, 443, std::string(), std::string()) {} |
| 9160 | |
| 9161 | inline SSLClient::SSLClient(const std::string &host, int port) |
| 9162 | : SSLClient(host, port, std::string(), std::string()) {} |