Send MAX_STREAMS frame if needed
Like sending MAX_(STREAM_)DATA frame, endpoints need to increase max_(uni|bidi)_streams via sending MAX_STREMA_ID frame. Details are written in Draft-14 10.2. Stream Limit Increment.
It looks like QUICStreamManager is suitable to generate MAX_STREAM_ID frame.
The frame name was changed to MAX_STREAMS.
@bryancall I pushed my unfinished code for this as f90e8dde99564ff4270f2ae63e8592b0948b6130, which I wrote a couple of months ago. To finish this:
- Call
on_stream_state_close()when a stream state is changed to closed - Generate MAX_STREAMS frame in
QUICStreamManager::generate_frame()with updated_local_max_streams_uniand_local_max_streams_bidi
This issue has been automatically marked as stale because it has not had recent activity. Marking it stale to flag it for further consideration by the community.
Closing as we are dropping our own QUIC implementation.