From 5f06632fc700e5f5c72b7238aee3fd84663ddf4f Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Mon, 22 Jul 2019 19:03:03 -0700 Subject: session: add transport deleted state Type: fix Distinguish between closed and deleted states to avoid deleting the session prior to the transport connection. Change-Id: Ia285ce94b26a70773f8c0ce9d2c73095d3e2a337 Signed-off-by: Florin Coras --- src/vnet/session/session_types.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/vnet/session/session_types.h') diff --git a/src/vnet/session/session_types.h b/src/vnet/session/session_types.h index 682094c9cb6..25b61166b11 100644 --- a/src/vnet/session/session_types.h +++ b/src/vnet/session/session_types.h @@ -133,6 +133,7 @@ typedef enum SESSION_STATE_CLOSING, SESSION_STATE_APP_CLOSED, SESSION_STATE_TRANSPORT_CLOSED, + SESSION_STATE_TRANSPORT_DELETED, SESSION_STATE_CLOSED, SESSION_STATE_N_STATES, } session_state_t; -- cgit 1.2.3-korg