From 95cd864382965292df9c2ffbd61285c5d45cfb50 Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Mon, 30 Dec 2019 21:53:19 -0800 Subject: session: fix listener global endpoint lookup Type: fix Ensure listeners for app transport protocols are added to lookup tables using their session endpoints instead of their transport connections, which can override the network connection id in the transport connection. Change-Id: I56fa3666bb1422c0799fc7143cd099751ff6e2e6 Signed-off-by: Florin Coras --- src/vnet/tls/tls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vnet/tls/tls.c') diff --git a/src/vnet/tls/tls.c b/src/vnet/tls/tls.c index cfe2c3a3eae..6a4f99ee08d 100644 --- a/src/vnet/tls/tls.c +++ b/src/vnet/tls/tls.c @@ -615,11 +615,11 @@ tls_start_listen (u32 app_listener_index, transport_endpoint_t * tep) return -1; } - sep->transport_proto = TRANSPORT_PROTO_TCP; clib_memset (args, 0, sizeof (*args)); args->app_index = tm->app_index; args->sep_ext = *sep; args->sep_ext.ns_index = app->ns_index; + args->sep_ext.transport_proto = TRANSPORT_PROTO_TCP; if (vnet_listen (args)) return -1; -- cgit 1.2.3-korg