mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-22 13:56:42 +01:00
- Changed read from server loop to read more than a single read.
This commit is contained in:
parent
436e4c59c3
commit
61da752077
1 changed files with 8 additions and 2 deletions
|
|
@ -156,16 +156,22 @@ int main( void )
|
||||||
if( ret == POLARSSL_ERR_SSL_PEER_CLOSE_NOTIFY )
|
if( ret == POLARSSL_ERR_SSL_PEER_CLOSE_NOTIFY )
|
||||||
break;
|
break;
|
||||||
|
|
||||||
if( ret <= 0 )
|
if( ret < 0 )
|
||||||
{
|
{
|
||||||
printf( "failed\n ! ssl_read returned %d\n\n", ret );
|
printf( "failed\n ! ssl_read returned %d\n\n", ret );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if( ret == 0 )
|
||||||
|
{
|
||||||
|
printf( "\n\nEOF\n\n" );
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
len = ret;
|
len = ret;
|
||||||
printf( " %d bytes read\n\n%s", len, (char *) buf );
|
printf( " %d bytes read\n\n%s", len, (char *) buf );
|
||||||
}
|
}
|
||||||
while( 0 );
|
while( 1 );
|
||||||
|
|
||||||
ssl_close_notify( &ssl );
|
ssl_close_notify( &ssl );
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue