diff options
author | Florin Coras <fcoras@cisco.com> | 2018-04-18 16:40:55 -0700 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2018-04-20 05:33:43 -0700 |
commit | 62166004a9f0861e9ea50101b2194881ef1a35aa (patch) | |
tree | cf7a52e59565489d4922bb8fd39f3ab40003b124 /src/vnet/tcp/tcp_input.c | |
parent | 00cd22d627325a4a2869bedac68d0c1dd4d8ade7 (diff) |
tcp: make newreno byte instead of acks dependent
Should be more resilient to ack losses
Change-Id: Icec3b93c1d290dec437fcc4e6fe5171906c9ba8a
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/tcp/tcp_input.c')
-rw-r--r-- | src/vnet/tcp/tcp_input.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vnet/tcp/tcp_input.c b/src/vnet/tcp/tcp_input.c index 5a1e84f3569..a1cdc76c626 100644 --- a/src/vnet/tcp/tcp_input.c +++ b/src/vnet/tcp/tcp_input.c @@ -941,6 +941,7 @@ tcp_cc_init_congestion (tcp_connection_t * tc) { tcp_fastrecovery_on (tc); tc->snd_congestion = tc->snd_una_max; + tc->cwnd_acc_bytes = 0; tc->cc_algo->congestion (tc); TCP_EVT_DBG (TCP_EVT_CC_EVT, tc, 4); } |