mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
remove unused version parameter from streams map constructor
This commit is contained in:
parent
d972a5e8f2
commit
d4a0793b6a
3 changed files with 1 additions and 5 deletions
|
@ -46,7 +46,6 @@ var errTooManyOpenStreams = errors.New("too many open streams")
|
|||
|
||||
type streamsMap struct {
|
||||
perspective protocol.Perspective
|
||||
version protocol.VersionNumber
|
||||
|
||||
maxIncomingBidiStreams uint64
|
||||
maxIncomingUniStreams uint64
|
||||
|
@ -70,7 +69,6 @@ func newStreamsMap(
|
|||
maxIncomingBidiStreams uint64,
|
||||
maxIncomingUniStreams uint64,
|
||||
perspective protocol.Perspective,
|
||||
version protocol.VersionNumber,
|
||||
) streamManager {
|
||||
m := &streamsMap{
|
||||
perspective: perspective,
|
||||
|
@ -78,7 +76,6 @@ func newStreamsMap(
|
|||
maxIncomingBidiStreams: maxIncomingBidiStreams,
|
||||
maxIncomingUniStreams: maxIncomingUniStreams,
|
||||
sender: sender,
|
||||
version: version,
|
||||
}
|
||||
m.initMaps()
|
||||
return m
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue