mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 13:47:35 +03:00
remove inactive streams from the window update queue
This commit is contained in:
parent
63c9272bf4
commit
ddc886be7a
2 changed files with 25 additions and 3 deletions
|
@ -53,6 +53,7 @@ func (q *windowUpdateQueue) QueueAll() {
|
|||
}
|
||||
// queue all stream-level window updates
|
||||
for id := range q.queue {
|
||||
delete(q.queue, id)
|
||||
str, err := q.streamGetter.GetOrOpenReceiveStream(id)
|
||||
if err != nil || str == nil { // the stream can be nil if it was completed before dequeing the window update
|
||||
continue
|
||||
|
@ -65,7 +66,6 @@ func (q *windowUpdateQueue) QueueAll() {
|
|||
StreamID: id,
|
||||
ByteOffset: offset,
|
||||
})
|
||||
delete(q.queue, id)
|
||||
}
|
||||
q.mutex.Unlock()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue