SSL HTTP client implementation
| 7920 | |
| 7921 | // SSL HTTP client implementation |
| 7922 | inline SSLClient::SSLClient(const std::string &host) |
| 7923 | : SSLClient(host, 443, std::string(), std::string()) {} |
| 7924 | |
| 7925 | inline SSLClient::SSLClient(const std::string &host, int port) |
| 7926 | : SSLClient(host, port, std::string(), std::string()) {} |