X-Git-Url: https://git.openssl.org/?p=openssl.git;a=blobdiff_plain;f=apps%2Fs_server.c;h=7fb7772826f9895b46270bcbd7f2988f9c124117;hp=81c3973d6fab8d04f91cb49c3a413796fce18c66;hb=c4666bfa13480c1e700a0d487300da2a56e889af;hpb=dcf88c5b79cbd433ee37276cdf63cdb5d49673cd diff --git a/apps/s_server.c b/apps/s_server.c index 81c3973d6f..7fb7772826 100644 --- a/apps/s_server.c +++ b/apps/s_server.c @@ -2646,7 +2646,7 @@ static int init_ssl_connection(SSL *con) i = SSL_accept(con); if (i <= 0) - retry = BIO_sock_should_retry(i); + retry = !SSL_want_nothing(con); #ifdef CERT_CB_TEST_RETRY { while (i <= 0 @@ -2656,7 +2656,7 @@ static int init_ssl_connection(SSL *con) "LOOKUP from certificate callback during accept\n"); i = SSL_accept(con); if (i <= 0) - retry = BIO_sock_should_retry(i); + retry = !SSL_want_nothing(con); } } #endif @@ -2677,7 +2677,7 @@ static int init_ssl_connection(SSL *con) BIO_printf(bio_s_out, "LOOKUP not successful\n"); i = SSL_accept(con); if (i <= 0) - retry = BIO_sock_should_retry(i); + retry = !SSL_want_nothing(con); } #endif } while (i < 0 && SSL_waiting_for_async(con));