Merge release-20210208.0-99-gf3de211bb (automated)

This commit is contained in:
gVisor bot 2021-02-26 00:34:30 +00:00
commit 05e99cbff6
1 changed files with 4 additions and 2 deletions

View File

@ -475,9 +475,11 @@ func (rc *rackControl) DoRecovery(_ *segment, fastRetransmit bool) {
break break
} }
snd.outstanding++ if sent := snd.maybeSendSegment(seg, int(snd.ep.scoreboard.SMSS()), snd.sndUna.Add(snd.sndWnd)); !sent {
break
}
dataSent = true dataSent = true
snd.sendSegment(seg) snd.outstanding += snd.pCount(seg, snd.maxPayloadSize)
} }
snd.postXmit(dataSent, true /* shouldScheduleProbe */) snd.postXmit(dataSent, true /* shouldScheduleProbe */)