mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
remove unused version parameter from stream constructor
This commit is contained in:
parent
0f352f2653
commit
d972a5e8f2
3 changed files with 4 additions and 7 deletions
|
@ -89,7 +89,7 @@ func (m *streamsMap) initMaps() {
|
|||
protocol.StreamTypeBidi,
|
||||
func(num protocol.StreamNum) streamI {
|
||||
id := num.StreamID(protocol.StreamTypeBidi, m.perspective)
|
||||
return newStream(id, m.sender, m.newFlowController(id), m.version)
|
||||
return newStream(id, m.sender, m.newFlowController(id))
|
||||
},
|
||||
m.sender.queueControlFrame,
|
||||
)
|
||||
|
@ -97,7 +97,7 @@ func (m *streamsMap) initMaps() {
|
|||
protocol.StreamTypeBidi,
|
||||
func(num protocol.StreamNum) streamI {
|
||||
id := num.StreamID(protocol.StreamTypeBidi, m.perspective.Opposite())
|
||||
return newStream(id, m.sender, m.newFlowController(id), m.version)
|
||||
return newStream(id, m.sender, m.newFlowController(id))
|
||||
},
|
||||
m.maxIncomingBidiStreams,
|
||||
m.sender.queueControlFrame,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue