always send a StopWaiting with a packet containing a retransmission

fixes #259
This commit is contained in:
Marten Seemann 2016-08-18 15:02:18 +07:00
parent 7d05640b24
commit 1d7cf74e48
No known key found for this signature in database
GPG key ID: 3603F40B121FCDEA
4 changed files with 56 additions and 7 deletions

View file

@ -44,6 +44,10 @@ func (f *streamFramer) PopBlockedFrame() *frames.BlockedFrame {
return frame
}
func (f *streamFramer) HasFramesForRetransmission() bool {
return len(f.retransmissionQueue) > 0
}
func (f *streamFramer) maybePopFramesForRetransmission(maxLen protocol.ByteCount) (res []*frames.StreamFrame, currentLen protocol.ByteCount) {
for len(f.retransmissionQueue) > 0 {
frame := f.retransmissionQueue[0]