GUACAMOLE-1652: Migrate OpenSSL initialization to modern methods for OpenSSL >= 1.1.0.
This commit is contained in:
parent
cdee93ae25
commit
9c93337d97
@ -381,10 +381,15 @@ int main(int argc, char* argv[]) {
|
|||||||
CRYPTO_set_locking_callback(guacd_openssl_locking_callback);
|
CRYPTO_set_locking_callback(guacd_openssl_locking_callback);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Init SSL */
|
#if OPENSSL_VERSION_NUMBER < 0x10100000L
|
||||||
|
/* Init OpenSSL for OpenSSL Versions < 1.1.0 */
|
||||||
SSL_library_init();
|
SSL_library_init();
|
||||||
SSL_load_error_strings();
|
SSL_load_error_strings();
|
||||||
ssl_context = SSL_CTX_new(SSLv23_server_method());
|
ssl_context = SSL_CTX_new(SSLv23_server_method());
|
||||||
|
#else
|
||||||
|
/* Set up OpenSSL for OpenSSL Versions >= 1.1.0 */
|
||||||
|
ssl_context = SSL_CTX_new(TLS_server_method());
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Load key */
|
/* Load key */
|
||||||
if (config->key_file != NULL) {
|
if (config->key_file != NULL) {
|
||||||
|
Loading…
Reference in New Issue
Block a user