mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 13:13:27 +01:00
Merge pull request #2922
a1d44f27
updates: use https for updates (moneromooo-monero)472a93c8
download: SSL suport (moneromooo-monero)
This commit is contained in:
commit
32c14e0f37
@ -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);
|
||||
|
@ -99,7 +99,7 @@ namespace tools
|
||||
|
||||
std::string get_update_url(const std::string &software, const std::string &subdir, const std::string &buildtag, const std::string &version, bool user)
|
||||
{
|
||||
const char *base = user ? "https://downloads.getmonero.org/" : "http://updates.getmonero.org/";
|
||||
const char *base = user ? "https://downloads.getmonero.org/" : "https://updates.getmonero.org/";
|
||||
#ifdef _WIN32
|
||||
static const char *extension = strncmp(buildtag.c_str(), "install-", 8) ? ".zip" : ".exe";
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user