mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
remove unused version parameter from receive stream constructor
This commit is contained in:
parent
1646fd545e
commit
0f352f2653
4 changed files with 3 additions and 6 deletions
|
@ -114,7 +114,7 @@ func (m *streamsMap) initMaps() {
|
|||
protocol.StreamTypeUni,
|
||||
func(num protocol.StreamNum) receiveStreamI {
|
||||
id := num.StreamID(protocol.StreamTypeUni, m.perspective.Opposite())
|
||||
return newReceiveStream(id, m.sender, m.newFlowController(id), m.version)
|
||||
return newReceiveStream(id, m.sender, m.newFlowController(id))
|
||||
},
|
||||
m.maxIncomingUniStreams,
|
||||
m.sender.queueControlFrame,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue