diff --git a/src/ssl.c b/src/ssl.c index 656be1ec2..73abe8f5c 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -25083,6 +25083,11 @@ void wolfSSL_CTX_set_servername_arg(WOLFSSL_CTX* ctx, void* arg) ctx->sniRecvCbArg = arg; } +void wolfSSL_ERR_load_BIO_strings(void) { + WOLFSSL_ENTER("ERR_load_BIO_strings"); + /* do nothing */ +} + void wolfSSL_THREADID_set_callback(void(*threadid_func)(void*)) { WOLFSSL_ENTER("wolfSSL_THREADID_set_callback"); diff --git a/wolfssl/openssl/ssl.h b/wolfssl/openssl/ssl.h index 9416ca371..ad70f7153 100644 --- a/wolfssl/openssl/ssl.h +++ b/wolfssl/openssl/ssl.h @@ -794,6 +794,7 @@ typedef WOLFSSL_ASN1_BIT_STRING ASN1_BIT_STRING; #define X509_check_host wolfSSL_X509_check_host #define i2a_ASN1_INTEGER wolfSSL_i2a_ASN1_INTEGER #define ERR_peek_error_line_data wolfSSL_ERR_peek_error_line_data +#define ERR_load_BIO_strings wolfSSL_ERR_load_BIO_strings #define SSL_CTX_set_tlsext_ticket_key_cb wolfSSL_CTX_set_tlsext_ticket_key_cb #define X509_email_free wolfSSL_X509_email_free #define X509_get1_ocsp wolfSSL_X509_get1_ocsp diff --git a/wolfssl/ssl.h b/wolfssl/ssl.h index 6013565ce..aad887fae 100644 --- a/wolfssl/ssl.h +++ b/wolfssl/ssl.h @@ -2516,6 +2516,7 @@ WOLFSSL_API int wolfSSL_CTX_set_alpn_protos(WOLFSSL_CTX *ctx, const unsigned char *protos, unsigned int protos_len); WOLFSSL_API void *wolfSSL_OPENSSL_memdup(const void *data, size_t siz, const char* file, int line); +WOLFSSL_API void wolfSSL_ERR_load_BIO_strings(void); #endif #if defined WOLFSSL_NGINX || defined WOLFSSL_HAPROXY