diff options
author | Florin Coras <fcoras@cisco.com> | 2022-10-18 18:37:56 -0700 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2022-10-20 18:14:32 +0000 |
commit | f8ee39ff715ec713045af69da465ba4da8248212 (patch) | |
tree | b9625b2f2b3effaabaded647b06d6ba871d71d6a /src/vnet/udp/udp_input.c | |
parent | 20de85b6da7e0b6dd0d73bc8358e7c67564d0c36 (diff) |
udp: support for disabling tx csum
Type: feature
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I84843eb3a0a66c64cd46536624633e0dae1c4681
Diffstat (limited to 'src/vnet/udp/udp_input.c')
-rw-r--r-- | src/vnet/udp/udp_input.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/udp/udp_input.c b/src/vnet/udp/udp_input.c index c11c0d51214..1c1d9e8e645 100644 --- a/src/vnet/udp/udp_input.c +++ b/src/vnet/udp/udp_input.c @@ -115,6 +115,7 @@ udp_connection_accept (udp_connection_t * listener, session_dgram_hdr_t * hdr, uc->c_fib_index = listener->c_fib_index; uc->mss = listener->mss; uc->flags |= UDP_CONN_F_CONNECTED; + uc->cfg_flags = listener->cfg_flags; if (session_dgram_accept (&uc->connection, listener->c_s_index, listener->c_thread_index)) |