don't send BlockedFrames after sending the FinBit for a stream

fixes #333
This commit is contained in:
Marten Seemann 2016-10-27 17:56:02 +07:00
parent ef977ee059
commit a8f45d7959
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
2 changed files with 18 additions and 2 deletions

View file

@ -119,7 +119,7 @@ func (f *streamFramer) maybePopNormalFrames(maxBytes protocol.ByteCount) (res []
if f.flowControlManager.RemainingConnectionWindowSize() == 0 {
// We are now connection-level FC blocked
f.blockedFrameQueue = append(f.blockedFrameQueue, &frames.BlockedFrame{StreamID: 0})
} else if sendWindowSize-frame.DataLen() == 0 {
} else if !frame.FinBit && sendWindowSize-frame.DataLen() == 0 {
// We are now stream-level FC blocked
f.blockedFrameQueue = append(f.blockedFrameQueue, &frames.BlockedFrame{StreamID: s.StreamID()})
}