mirror of
https://github.com/opnsense/src.git
synced 2026-04-23 07:07:24 -04:00
Fix for a SACK bug where the very last segment retransmitted
from the SACK scoreboard could result in the next (untransmitted) segment to be skipped.
This commit is contained in:
parent
0aa8ce5012
commit
e9f2f80e09
1 changed files with 1 additions and 1 deletions
|
|
@ -951,7 +951,7 @@ send:
|
|||
tp->t_flags |= TF_SENTFIN;
|
||||
}
|
||||
}
|
||||
if (tp->sack_enable && sack_rxmit && (p->rxmit != tp->snd_nxt))
|
||||
if (tp->sack_enable && sack_rxmit)
|
||||
goto timer;
|
||||
tp->snd_nxt += len;
|
||||
if (SEQ_GT(tp->snd_nxt, tp->snd_max)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue