From: Florin Coras Date: Sat, 7 Oct 2023 00:31:32 +0000 (-0700) Subject: tls: no read after app close X-Git-Tag: v23.10-rc2~5 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=4ba523740f1346640a5b786cfff12180946ae37d;p=vpp.git tls: no read after app close Type: fix Signed-off-by: Florin Coras Change-Id: I34f8ee2e36d07e8e55e21561528fc6b73feb852f (cherry picked from commit 3843d0dd03a3ebbdb5d13b54e1b871a8ea72498c) --- diff --git a/src/vnet/tls/tls.c b/src/vnet/tls/tls.c index b7ef7de6bd9..aca8c9f16a3 100644 --- a/src/vnet/tls/tls.c +++ b/src/vnet/tls/tls.c @@ -516,7 +516,7 @@ tls_app_rx_callback (session_t * tls_session) return 0; ctx = tls_ctx_get (tls_session->opaque); - if (PREDICT_FALSE (ctx->no_app_session)) + if (PREDICT_FALSE (ctx->no_app_session || ctx->app_closed)) { TLS_DBG (1, "Local App closed"); return 0;