From 854e0a214d9c894a82e9238ed70459e4efc751af Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Fri, 26 Jul 2019 14:46:12 -0700 Subject: session: define connection id length Type:feature To be used by transports overwriting the connection id. Change-Id: Ia5dbd9dccc2e3eb62e602514b24882ddc12ff1f2 Signed-off-by: Florin Coras --- src/vnet/tls/tls.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'src/vnet/tls') diff --git a/src/vnet/tls/tls.h b/src/vnet/tls/tls.h index 6de6924d390..51b92a5debf 100644 --- a/src/vnet/tls/tls.h +++ b/src/vnet/tls/tls.h @@ -37,22 +37,23 @@ #endif /* *INDENT-OFF* */ -typedef CLIB_PACKED (struct tls_cxt_id_ +typedef struct tls_cxt_id_ { - u32 parent_app_wrk_index; union { session_handle_t app_session_handle; u32 parent_app_api_ctx; }; session_handle_t tls_session_handle; + u32 parent_app_wrk_index; u32 ssl_ctx; u32 listener_ctx_index; u8 tcp_is_ip4; u8 tls_engine_id; -}) tls_ctx_id_t; +} tls_ctx_id_t; /* *INDENT-ON* */ -STATIC_ASSERT (sizeof (tls_ctx_id_t) <= 42, "ctx id must be less than 42"); +STATIC_ASSERT (sizeof (tls_ctx_id_t) <= TRANSPORT_CONN_ID_LEN, + "ctx id must be less than TRANSPORT_CONN_ID_LEN"); typedef struct tls_ctx_ { -- cgit 1.2.3-korg