mirror of
https://github.com/opnsense/src.git
synced 2026-03-04 14:24:23 -05: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
2 changed files with 2 additions and 0 deletions
|
|
@ -1023,6 +1023,7 @@ after_listen:
|
|||
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 @@ after_listen:
|
|||
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 a new issue