diff options
author | Florin Coras <fcoras@cisco.com> | 2020-10-23 10:45:48 -0700 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-10-23 19:26:18 +0000 |
commit | 55e556c93df001617863494e873498d9c0b7c172 (patch) | |
tree | 23eca5043549640fca6a8042810b0aa379ace1f9 /src/vnet/tcp/tcp.c | |
parent | eaec00cf87d155511b90df4fb83d7e99cb3f185f (diff) |
tcp: remove snd_una_max
Type: improvement
Signed-off-by: Florin Coras <fcoras@cisco.com>
Change-Id: I03f923053499f219035c9b7b6640fc575568d474
Diffstat (limited to 'src/vnet/tcp/tcp.c')
-rw-r--r-- | src/vnet/tcp/tcp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/vnet/tcp/tcp.c b/src/vnet/tcp/tcp.c index b04bbe515eb..407ba9576a8 100644 --- a/src/vnet/tcp/tcp.c +++ b/src/vnet/tcp/tcp.c @@ -680,7 +680,6 @@ tcp_init_snd_vars (tcp_connection_t * tc) tc->iss = tcp_generate_random_iss (tc); tc->snd_una = tc->iss; tc->snd_nxt = tc->iss + 1; - tc->snd_una_max = tc->snd_nxt; tc->srtt = 0.1 * THZ; /* 100 ms */ if (!tcp_cfg.csum_offload) |