Allow stub implementation of the context_save for now

This commit is contained in:
Jarno Lamsa 2019-06-04 16:03:28 +03:00
parent 93c6ff2392
commit 1d1657f11c
2 changed files with 10 additions and 4 deletions

View file

@ -2925,8 +2925,11 @@ send_request:
opt.serialize = 0;
mbedtls_printf( " Serializing live connection..." );
if( ( ret = mbedtls_ssl_context_save( &ssl, NULL, 0, &len ) )
!= MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL )
ret = mbedtls_ssl_context_save( &ssl, NULL, 0, &len );
/* 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 "
"-0x%x\n\n", -ret );

View file

@ -3936,8 +3936,11 @@ data_exchange:
opt.serialize = 0;
mbedtls_printf( " Serializing live connection..." );
if( ( ret = mbedtls_ssl_context_save( &ssl, NULL, 0, &len ) )
!= MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL )
ret = mbedtls_ssl_context_save( &ssl, NULL, 0, &len );
/* 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 "
"-0x%x\n\n", -ret );