Adapt programs to use nbio with DTLS

This commit is contained in:
Manuel Pégourié-Gonnard 2014-09-29 16:11:47 +02:00 committed by Paul Bakker
parent 7de3c9eecb
commit f03651217c
2 changed files with 2 additions and 2 deletions

View file

@ -946,7 +946,7 @@ int main( int argc, char *argv[] )
else else
ssl_set_bio_timeout( &ssl, &server_fd, net_send, net_recv, ssl_set_bio_timeout( &ssl, &server_fd, net_send, net_recv,
#if defined(POLARSSL_HAVE_TIME) #if defined(POLARSSL_HAVE_TIME)
net_recv_timeout, opt.nbio == 0 ? net_recv_timeout : NULL,
#else #else
NULL, NULL,
#endif #endif

View file

@ -1596,7 +1596,7 @@ reset:
else else
ssl_set_bio_timeout( &ssl, &client_fd, net_send, net_recv, ssl_set_bio_timeout( &ssl, &client_fd, net_send, net_recv,
#if defined(POLARSSL_HAVE_TIME) #if defined(POLARSSL_HAVE_TIME)
net_recv_timeout, opt.nbio == 0 ? net_recv_timeout : NULL,
#else #else
NULL, NULL,
#endif #endif