You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, in practice the application fails to send 0-length application data messages because of the following code:
for( written = 0, frags = 0; written < len; written += ret, frags++ )
{
while( ( ret = mbedtls_ssl_write( &ssl, buf + written,
len - written ) ) <= 0 )
{
What currently happens is that the message is never actually sent and the ssl_client2 directly moves on to wait for an incoming message from the server to arrive. In fact, the following commands result in a deadlock:
Description
Bug
The example at programs/ssl/ssl_client2.c states the following in the help message:
However, in practice the application fails to send 0-length application data messages because of the following code:
What currently happens is that the message is never actually sent and the ssl_client2 directly moves on to wait for an incoming message from the server to arrive. In fact, the following commands result in a deadlock:
The text was updated successfully, but these errors were encountered: