mirror of
https://github.com/monero-project/monero.git
synced 2025-06-21 15:04:12 -04:00
Merge pull request #2696
937e7f8a
Initialize openssl on startup (moneromooo-monero)
This commit is contained in:
commit
8df6b010eb
10 changed files with 21 additions and 1 deletions
|
@ -549,6 +549,13 @@ std::string get_nix_version_display_string()
|
|||
if (!strcmp(ver, "2.25"))
|
||||
MCLOG_RED(el::Level::Warning, "global", "Running with glibc " << ver << ", hangs may occur - change glibc version if possible");
|
||||
#endif
|
||||
|
||||
#if OPENSSL_VERSION_NUMBER < 0x10100000
|
||||
SSL_library_init();
|
||||
#else
|
||||
OPENSSL_init_ssl(0, NULL);
|
||||
#endif
|
||||
|
||||
return true;
|
||||
}
|
||||
void set_strict_default_file_permissions(bool strict)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue