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
|
@ -113,7 +113,7 @@ func (f *streamFramer) maybePopNormalFrames(maxTotalLen protocol.ByteCount) []*w
|
|||
}
|
||||
id := f.streamQueue[0]
|
||||
f.streamQueue = f.streamQueue[1:]
|
||||
str, err := f.streamGetter.GetOrOpenStream(id)
|
||||
str, err := f.streamGetter.GetOrOpenSendStream(id)
|
||||
if err != nil { // can happen if the stream completed after it said it had data
|
||||
delete(f.activeStreams, id)
|
||||
continue
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue