tls: Make tls CPS test run for a quite long time

Type: fix

Change-Id: I8cfb48bd7f92689b296861dd368186408918061b
Signed-off-by: Yu Ping <ping.yu@intel.com>
This commit is contained in:
Yu Ping
2020-01-07 04:02:55 +08:00
committed by Florin Coras
parent 067f8f963d
commit a9ed934745

View File

@ -424,8 +424,10 @@ openssl_ctx_read (tls_ctx_t * ctx, session_t * tls_session)
if (PREDICT_FALSE (SSL_in_init (oc->ssl))) if (PREDICT_FALSE (SSL_in_init (oc->ssl)))
{ {
openssl_ctx_handshake_rx (ctx, tls_session); if (openssl_ctx_handshake_rx (ctx, tls_session) < 0)
return 0; return 0;
else
goto check_app_fifo;
} }
f = tls_session->rx_fifo; f = tls_session->rx_fifo;
@ -487,7 +489,9 @@ check_app_fifo:
svm_fifo_enqueue_nocopy (f, read); svm_fifo_enqueue_nocopy (f, read);
} }
tls_notify_app_enqueue (ctx, app_session); /* If handshake just completed, session may still be in accepting state */
if (app_session->session_state >= SESSION_STATE_READY)
tls_notify_app_enqueue (ctx, app_session);
if (SSL_pending (oc->ssl) > 0) if (SSL_pending (oc->ssl) > 0)
tls_add_vpp_q_builtin_rx_evt (tls_session); tls_add_vpp_q_builtin_rx_evt (tls_session);