mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
introduce a type for the stream number
This commit is contained in:
parent
0dd26f4a4c
commit
a8633a952c
23 changed files with 100 additions and 97 deletions
|
@ -82,7 +82,7 @@ func (m *outgoingUniStreamsMap) OpenStreamSync() (sendStreamI, error) {
|
|||
func (m *outgoingUniStreamsMap) openStreamImpl() (sendStreamI, error) {
|
||||
if m.nextStream > m.maxStream {
|
||||
if !m.blockedSent {
|
||||
var streamNum uint64
|
||||
var streamNum protocol.StreamNum
|
||||
if m.maxStream != protocol.InvalidStreamID {
|
||||
streamNum = m.maxStream.StreamNum()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue