Allow stub implementation of the context_save for now
This commit is contained in:
parent
93c6ff2392
commit
1d1657f11c
2 changed files with 10 additions and 4 deletions
|
@ -2925,8 +2925,11 @@ send_request:
|
||||||
opt.serialize = 0;
|
opt.serialize = 0;
|
||||||
mbedtls_printf( " Serializing live connection..." );
|
mbedtls_printf( " Serializing live connection..." );
|
||||||
|
|
||||||
if( ( ret = mbedtls_ssl_context_save( &ssl, NULL, 0, &len ) )
|
ret = mbedtls_ssl_context_save( &ssl, NULL, 0, &len );
|
||||||
!= MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL )
|
|
||||||
|
/* Allow stub implementation returning 0 for now */
|
||||||
|
if( ret != MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL &&
|
||||||
|
ret != 0 )
|
||||||
{
|
{
|
||||||
mbedtls_printf( " failed\n ! mbedtls_ssl_context_save returned "
|
mbedtls_printf( " failed\n ! mbedtls_ssl_context_save returned "
|
||||||
"-0x%x\n\n", -ret );
|
"-0x%x\n\n", -ret );
|
||||||
|
|
|
@ -3936,8 +3936,11 @@ data_exchange:
|
||||||
opt.serialize = 0;
|
opt.serialize = 0;
|
||||||
mbedtls_printf( " Serializing live connection..." );
|
mbedtls_printf( " Serializing live connection..." );
|
||||||
|
|
||||||
if( ( ret = mbedtls_ssl_context_save( &ssl, NULL, 0, &len ) )
|
ret = mbedtls_ssl_context_save( &ssl, NULL, 0, &len );
|
||||||
!= MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL )
|
|
||||||
|
/* Allow stub implementation returning 0 for now */
|
||||||
|
if( ret != MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL &&
|
||||||
|
ret != 0 )
|
||||||
{
|
{
|
||||||
mbedtls_printf( " failed\n ! mbedtls_ssl_context_save returned "
|
mbedtls_printf( " failed\n ! mbedtls_ssl_context_save returned "
|
||||||
"-0x%x\n\n", -ret );
|
"-0x%x\n\n", -ret );
|
||||||
|
|
Loading…
Reference in a new issue