diff options
author | Florin Coras <fcoras@cisco.com> | 2019-07-22 08:08:43 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2019-07-22 20:24:35 +0000 |
commit | c75423981ad2d44c4f2abc5dbe69d6a1a9930d1e (patch) | |
tree | 418f837bca30ef2e68f66c20bff9c46a7b2f92d7 /src/vnet/udp/udp_input.c | |
parent | d455e5a2ef1f6ef2bcf28fb5ad43c902bd6c787a (diff) |
udp: support close with data
Also adds connection flags.
Type: feature
Change-Id: I76f21eb88ab203076149b7c03dc31c22fc0f342e
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/udp/udp_input.c')
-rw-r--r-- | src/vnet/udp/udp_input.c | 6 |
1 files changed, 3 insertions, 3 deletions
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, |