mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
create internal interfaces for send and receive streams
And use those for handling frames.
This commit is contained in:
parent
7a3209b3a4
commit
e802491a8f
13 changed files with 391 additions and 58 deletions
|
@ -38,7 +38,7 @@ func (q *windowUpdateQueue) QueueAll() {
|
|||
if id == q.cryptoStream.StreamID() {
|
||||
offset = q.cryptoStream.getWindowUpdate()
|
||||
} else {
|
||||
str, err := q.streamGetter.GetOrOpenStream(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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue