download: SSL suport

pull/95/head
moneromooo-monero 7 years ago
parent f51bac990e
commit 472a93c83a
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -147,9 +147,10 @@ namespace tools
lock.unlock();
uint16_t port = u_c.port ? u_c.port : 80;
bool ssl = u_c.schema == "https";
uint16_t port = u_c.port ? u_c.port : ssl ? 443 : 80;
MDEBUG("Connecting to " << u_c.host << ":" << port);
client.set_server(u_c.host, std::to_string(port), boost::none);
client.set_server(u_c.host, std::to_string(port), boost::none, ssl);
if (!client.connect(std::chrono::seconds(30)))
{
boost::lock_guard<boost::mutex> lock(control->mutex);

Loading…
Cancel
Save