From c75423981ad2d44c4f2abc5dbe69d6a1a9930d1e Mon Sep 17 00:00:00 2001 From: Florin Coras Date: Mon, 22 Jul 2019 08:08:43 -0700 Subject: udp: support close with data Also adds connection flags. Type: feature Change-Id: I76f21eb88ab203076149b7c03dc31c22fc0f342e Signed-off-by: Florin Coras --- src/vnet/udp/udp_input.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/vnet/udp/udp_input.c') diff --git a/src/vnet/udp/udp_input.c b/src/vnet/udp/udp_input.c index cc5ae2bd0eb..f6d89dcf673 100644 --- a/src/vnet/udp/udp_input.c +++ b/src/vnet/udp/udp_input.c @@ -162,7 +162,7 @@ udp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node, */ tc0 = session_get_transport (s0); uc0 = udp_get_connection_from_transport (tc0); - if (uc0->is_connected) + if (uc0->flags & UDP_CONN_F_CONNECTED) { /* * Clone the transport. It will be cleaned up with the @@ -190,7 +190,7 @@ udp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node, { tc0 = listen_session_get_transport (s0); uc0 = udp_get_connection_from_transport (tc0); - if (uc0->is_connected) + if (uc0->flags & UDP_CONN_F_CONNECTED) { child0 = udp_connection_alloc (my_thread_index); if (is_ip4) @@ -207,7 +207,7 @@ udp46_input_inline (vlib_main_t * vm, vlib_node_runtime_t * node, child0->c_rmt_port = udp0->src_port; child0->c_is_ip4 = is_ip4; child0->c_fib_index = tc0->fib_index; - child0->is_connected = 1; + child0->flags |= UDP_CONN_F_CONNECTED; if (session_stream_accept (&child0->connection, tc0->s_index, tc0->thread_index, -- cgit 1.2.3-korg