mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-16 15:11:52 +00:00
Reset dupack count in header prediction.
Follow-on to rev 1.39. Reviewed by: jayanth, Thomas R Henderson <thomas.r.henderson@boeing.com>, silby, dillon
This commit is contained in:
parent
4bbf3b8b3a
commit
b5addd8564
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=101928
@ -1023,6 +1023,7 @@ tcp_input(m, off0)
|
||||
tcpstat.tcps_rcvackbyte += acked;
|
||||
sbdrop(&so->so_snd, acked);
|
||||
tp->snd_una = th->th_ack;
|
||||
tp->t_dupacks = 0;
|
||||
m_freem(m);
|
||||
ND6_HINT(tp); /* some progress has been done */
|
||||
|
||||
|
@ -1023,6 +1023,7 @@ tcp_input(m, off0)
|
||||
tcpstat.tcps_rcvackbyte += acked;
|
||||
sbdrop(&so->so_snd, acked);
|
||||
tp->snd_una = th->th_ack;
|
||||
tp->t_dupacks = 0;
|
||||
m_freem(m);
|
||||
ND6_HINT(tp); /* some progress has been done */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user