diff options
author | Florin Coras <fcoras@cisco.com> | 2021-04-12 19:55:37 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2021-04-14 16:01:50 +0000 |
commit | 04ae8273f64a4f5a771da9b056bcccd1ebf9c7d9 (patch) | |
tree | 09597fb999f63e30a22424d9a3a0e616a24c28b9 /src/vnet/tcp/tcp_input.c | |
parent | 7bc714da36bb9badec2ad5bf848c6b90caabad0a (diff) |
session tcp vcl: api to update connection attributes
Type: feature
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: Ifdd6024daf044751895bb8d2deabad41d3a80c92
Diffstat (limited to 'src/vnet/tcp/tcp_input.c')
-rw-r--r-- | src/vnet/tcp/tcp_input.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vnet/tcp/tcp_input.c b/src/vnet/tcp/tcp_input.c index b64c236bd47..398bf1b76a7 100644 --- a/src/vnet/tcp/tcp_input.c +++ b/src/vnet/tcp/tcp_input.c @@ -3050,6 +3050,12 @@ VLIB_REGISTER_NODE (tcp6_input_node) = /* *INDENT-ON* */ #ifndef CLIB_MARCH_VARIANT +void +tcp_check_gso (tcp_connection_t *tc) +{ + tcp_check_tx_offload (tc, tc->c_is_ip4); +} + static void tcp_dispatch_table_init (tcp_main_t * tm) { |