Merge pull request #4054

24569454 epee: add SSL support (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2019-03-04 21:17:21 +02:00
commit 46fd181cca
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD
25 changed files with 1065 additions and 239 deletions

View file

@ -179,8 +179,8 @@ namespace tools
lock.unlock();
bool ssl = u_c.schema == "https";
uint16_t port = u_c.port ? u_c.port : ssl ? 443 : 80;
epee::net_utils::ssl_support_t ssl = u_c.schema == "https" ? epee::net_utils::ssl_support_t::e_ssl_support_enabled : epee::net_utils::ssl_support_t::e_ssl_support_disabled;
uint16_t port = u_c.port ? u_c.port : ssl == epee::net_utils::ssl_support_t::e_ssl_support_enabled ? 443 : 80;
MDEBUG("Connecting to " << u_c.host << ":" << port);
client.set_server(u_c.host, std::to_string(port), boost::none, ssl);
if (!client.connect(std::chrono::seconds(30)))