From f4a92f6a1cf6b27318b6819ad3145b4020a27779 Mon Sep 17 00:00:00 2001 From: Yu Ping Date: Tue, 21 Jan 2020 05:07:30 +0800 Subject: tls: refactor for tls async event handling Type: refactor Make sure one tls ctx has one event availble Thus ctx has the same life time with event, which can simplify the management. Change-Id: I1f4240e7316025d81bb97644946ffa399c00cd76 Signed-off-by: Yu Ping --- src/vnet/tls/tls.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/vnet/tls/tls.h') diff --git a/src/vnet/tls/tls.h b/src/vnet/tls/tls.h index 31572e8c463..15d06db6563 100644 --- a/src/vnet/tls/tls.h +++ b/src/vnet/tls/tls.h @@ -79,6 +79,7 @@ typedef struct tls_ctx_ u8 app_closed; u8 no_app_session; u8 *srv_hostname; + u32 evt_index; u32 ckpair_index; } tls_ctx_t; -- cgit 1.2.3-korg