mirror of
https://github.com/warmcat/libwebsockets.git
synced 2025-03-09 00:00:04 +01:00
mbedtls: log if we are using it
This commit is contained in:
parent
c0c217bd5a
commit
ec5e0e3e51
1 changed files with 4 additions and 0 deletions
|
@ -303,9 +303,13 @@ lws_context_init_ssl_library(struct lws_context_creation_info *info)
|
|||
#else
|
||||
#if defined(LWS_USE_BORINGSSL)
|
||||
lwsl_notice(" Compiled with BoringSSL support\n");
|
||||
#else
|
||||
#if defined(LWS_USE_MBEDTLS)
|
||||
lwsl_notice(" Compiled with MbedTLS support\n");
|
||||
#else
|
||||
lwsl_notice(" Compiled with OpenSSL support\n");
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
if (!lws_check_opt(info->options, LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT)) {
|
||||
lwsl_notice(" SSL disabled: no LWS_SERVER_OPTION_DO_SSL_GLOBAL_INIT\n");
|
||||
|
|
Loading…
Add table
Reference in a new issue