1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

vtls: make BearSSL possible to set with CURL_SSL_BACKEND

Ref: 9b879160df (commitcomment-36355622)

Closes #4698
This commit is contained in:
Gisle Vanem 2019-12-10 13:44:39 +01:00 committed by Daniel Stenberg
parent de68a70166
commit 2c0362ee04
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -1225,6 +1225,9 @@ static const struct Curl_ssl *available_backends[] = {
#endif
#if defined(USE_MESALINK)
&Curl_ssl_mesalink,
#endif
#if defined(USE_BEARSSL)
&Curl_ssl_bearssl,
#endif
NULL
};