Fix mbedtls_net_usleep() on Windows

For some reason select() doesn't seem to work.
This commit is contained in:
Manuel Pégourié-Gonnard 2015-07-01 11:29:31 +02:00
parent d3a9166afe
commit acecb653d5

View File

@ -425,15 +425,19 @@ int mbedtls_net_set_nonblock( mbedtls_net_context *ctx )
*/
void mbedtls_net_usleep( unsigned long usec )
{
#if defined(_WIN32)
Sleep( ( usec + 999 ) / 1000 );
#else
struct timeval tv;
tv.tv_sec = usec / 1000000;
#if !defined(_WIN32) && ( defined(__unix__) || defined(__unix) || \
( defined(__APPLE__) && defined(__MACH__) ) )
#if defined(__unix__) || defined(__unix) || \
( defined(__APPLE__) && defined(__MACH__) )
tv.tv_usec = (suseconds_t) usec % 1000000;
#else
tv.tv_usec = usec % 1000000;
#endif
select( 0, NULL, NULL, NULL, &tv );
#endif
}
/*