Update logging enter, exit, msg to match function names. Fix some typos and improper use of "enter". Fix internal uses of SSL_SUCCESS and SSL_FAILURE. Add WOLFSSL_DEBUG_NONBLOCK option to allow printing iterations without debug enabled.

This commit is contained in:
David Garske
2023-02-21 12:02:15 -08:00
parent da04e0fb4c
commit fc6d693dae
18 changed files with 314 additions and 309 deletions

View File

@@ -379,7 +379,7 @@ int wolfSSL_set_quic_transport_params(WOLFSSL* ssl,
const QuicTransportParam* tp;
int ret = WOLFSSL_SUCCESS;
WOLFSSL_ENTER("SSL_set_quic_transport_params");
WOLFSSL_ENTER("wolfSSL_set_quic_transport_params");
if (!params || params_len == 0) {
tp = NULL;
@@ -396,7 +396,7 @@ int wolfSSL_set_quic_transport_params(WOLFSSL* ssl,
ssl->quic.transport_local = tp;
cleanup:
WOLFSSL_LEAVE("SSL_set_quic_transport_params", ret);
WOLFSSL_LEAVE("wolfSSL_set_quic_transport_params", ret);
return ret;
}