mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-26 06:05:44 +01:00
Don't check errors on ssl_close_notify()
Depending on timing we might get different errors (conn_reset, write failed) and ignoring them all ends up being almost the same as just not checking errors.
This commit is contained in:
parent
78803c0567
commit
687f89beab
@ -1284,24 +1284,10 @@ send_request:
|
||||
close_notify:
|
||||
printf( " . Closing the connection..." );
|
||||
|
||||
while( ( ret = ssl_close_notify( &ssl ) ) < 0 )
|
||||
{
|
||||
if( ret == POLARSSL_ERR_NET_CONN_RESET )
|
||||
{
|
||||
printf( " ok (already closed by peer)\n" );
|
||||
ret = 0;
|
||||
goto reconnect;
|
||||
}
|
||||
/* Don't check for errors, the connection might already be closed */
|
||||
ssl_close_notify( &ssl );
|
||||
|
||||
if( ret != POLARSSL_ERR_NET_WANT_READ &&
|
||||
ret != POLARSSL_ERR_NET_WANT_WRITE )
|
||||
{
|
||||
printf( " failed\n ! ssl_close_notify returned %d\n\n", ret );
|
||||
goto reconnect;
|
||||
}
|
||||
}
|
||||
|
||||
printf( " ok\n" );
|
||||
printf( " done\n" );
|
||||
|
||||
/*
|
||||
* 9. Reconnect?
|
||||
|
@ -1763,24 +1763,10 @@ data_exchange:
|
||||
close_notify:
|
||||
printf( " . Closing the connection..." );
|
||||
|
||||
while( ( ret = ssl_close_notify( &ssl ) ) < 0 )
|
||||
{
|
||||
if( ret == POLARSSL_ERR_NET_CONN_RESET )
|
||||
{
|
||||
printf( " ok (already closed by peer)\n" );
|
||||
ret = 0;
|
||||
goto reset;
|
||||
}
|
||||
/* Don't check for errors, the connection might already be closed */
|
||||
ssl_close_notify( &ssl );
|
||||
|
||||
if( ret != POLARSSL_ERR_NET_WANT_READ &&
|
||||
ret != POLARSSL_ERR_NET_WANT_WRITE )
|
||||
{
|
||||
printf( " failed\n ! ssl_close_notify returned %d\n\n", ret );
|
||||
goto reset;
|
||||
}
|
||||
}
|
||||
|
||||
printf( " ok\n" );
|
||||
printf( " done\n" );
|
||||
goto reset;
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user