1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-07 06:42:56 +03:00

Remove timing_m_sleep() -> net_usleep()

This commit is contained in:
Manuel Pégourié-Gonnard
2015-05-14 18:22:47 +02:00
parent e94bfe6cd6
commit a63bc94a2d
7 changed files with 14 additions and 66 deletions

View File

@@ -1494,7 +1494,7 @@ reconnect:
#if defined(MBEDTLS_TIMING_C)
if( opt.reco_delay > 0 )
mbedtls_timing_m_sleep( 1000 * opt.reco_delay );
mbedtls_net_usleep( 1000000 * opt.reco_delay );
#endif
mbedtls_printf( " . Reconnecting with saved session..." );