mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
make the number of incoming streams configurable, for IETF QUIC
This commit is contained in:
parent
ecad36a65b
commit
58b20c6009
14 changed files with 131 additions and 29 deletions
|
@ -35,6 +35,8 @@ var _ streamManager = &streamsMap{}
|
|||
func newStreamsMap(
|
||||
sender streamSender,
|
||||
newFlowController func(protocol.StreamID) flowcontrol.StreamFlowController,
|
||||
maxIncomingStreams int,
|
||||
maxIncomingUniStreams int,
|
||||
perspective protocol.Perspective,
|
||||
version protocol.VersionNumber,
|
||||
) streamManager {
|
||||
|
@ -69,11 +71,10 @@ func newStreamsMap(
|
|||
newBidiStream,
|
||||
sender.queueControlFrame,
|
||||
)
|
||||
// TODO(#523): make these values configurable
|
||||
m.incomingBidiStreams = newIncomingBidiStreamsMap(
|
||||
firstIncomingBidiStream,
|
||||
protocol.MaxBidiStreamID(protocol.MaxIncomingStreams, perspective),
|
||||
protocol.MaxIncomingStreams,
|
||||
protocol.MaxBidiStreamID(maxIncomingStreams, perspective),
|
||||
maxIncomingStreams,
|
||||
sender.queueControlFrame,
|
||||
newBidiStream,
|
||||
)
|
||||
|
@ -82,11 +83,10 @@ func newStreamsMap(
|
|||
newUniSendStream,
|
||||
sender.queueControlFrame,
|
||||
)
|
||||
// TODO(#523): make these values configurable
|
||||
m.incomingUniStreams = newIncomingUniStreamsMap(
|
||||
firstIncomingUniStream,
|
||||
protocol.MaxUniStreamID(protocol.MaxIncomingStreams, perspective),
|
||||
protocol.MaxIncomingStreams,
|
||||
protocol.MaxUniStreamID(maxIncomingUniStreams, perspective),
|
||||
maxIncomingUniStreams,
|
||||
sender.queueControlFrame,
|
||||
newUniReceiveStream,
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue