mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
return the putStream error in the streamsMap
This commit is contained in:
parent
d0a394430f
commit
25b8052985
2 changed files with 4 additions and 8 deletions
|
@ -128,15 +128,13 @@ func (m *streamsMap) openRemoteStream(id protocol.StreamID) (streamI, error) {
|
|||
m.highestStreamOpenedByPeer = id
|
||||
}
|
||||
s := m.newStream(id)
|
||||
m.putStream(s)
|
||||
return s, nil
|
||||
return s, m.putStream(s)
|
||||
}
|
||||
|
||||
func (m *streamsMap) openStreamImpl() (streamI, error) {
|
||||
s := m.newStream(m.nextStreamToOpen)
|
||||
m.putStream(s)
|
||||
m.nextStreamToOpen = m.nextStreamID(m.nextStreamToOpen)
|
||||
return s, nil
|
||||
return s, m.putStream(s)
|
||||
}
|
||||
|
||||
// OpenStream opens the next available stream
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue