mbedtls_debug_print_ret() is only used within mbedTLS.
 
Symbols
loading...
Files
loading...

mbedtls_debug_print_ret() function

Print the return value of a function to the debug output. This function is always used through the MBEDTLS_SSL_DEBUG_RET() macro, which supplies the ssl context, file and line number parameters. \attention This function is intended for INTERNAL usage within the library only.

Syntax

void mbedtls_debug_print_ret( const mbedtls_ssl_context *ssl,     int level,     const char *file,     int line,     const char *text,     int ret );

Arguments

ssl

SSL context

level

error level of the debug message

file

file the error has occurred in

line

line number the error has occurred in

text

the name of the function that returned the error

ret

the return code value

References

LocationText
debug.h:140
void mbedtls_debug_print_ret( const mbedtls_ssl_context *ssl, int level,