mirror of
				https://github.com/Mbed-TLS/mbedtls.git
				synced 2025-10-28 23:14:56 +03:00 
			
		
		
		
	- Changed read from server loop to read more than a single read.
This commit is contained in:
		| @@ -156,16 +156,22 @@ int main( void ) | ||||
|         if( ret == POLARSSL_ERR_SSL_PEER_CLOSE_NOTIFY ) | ||||
|             break; | ||||
|  | ||||
|         if( ret <= 0 ) | ||||
|         if( ret < 0 ) | ||||
|         { | ||||
|             printf( "failed\n  ! ssl_read returned %d\n\n", ret ); | ||||
|             break; | ||||
|         } | ||||
|  | ||||
|         if( ret == 0 ) | ||||
|         { | ||||
|             printf( "\n\nEOF\n\n" ); | ||||
|             break; | ||||
|         } | ||||
|  | ||||
|         len = ret; | ||||
|         printf( " %d bytes read\n\n%s", len, (char *) buf ); | ||||
|     } | ||||
|     while( 0 ); | ||||
|     while( 1 ); | ||||
|  | ||||
|     ssl_close_notify( &ssl ); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user