You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
Currently next_stream_id is at the transport class scope. This is fine for clients, but it's not really ideal for servers. Moving this to ConnectionContext will make this connection specific, which is what it should be.
When moving it should be renamed to last_stream_id since it's really the last stream number assigned, not the next one available. This is used to feed it back into make_stream_id()
The text was updated successfully, but these errors were encountered:
Currently
next_stream_id
is at the transport class scope. This is fine for clients, but it's not really ideal for servers. Moving this toConnectionContext
will make this connection specific, which is what it should be.When moving it should be renamed to
last_stream_id
since it's really the last stream number assigned, not the next one available. This is used to feed it back intomake_stream_id()
The text was updated successfully, but these errors were encountered: