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
// Server does not need to locally initiate any streams
initial_max_send_streams:0,
This is arguably a bad default, given that it will block any server pushes unless the client explicitly sends a non-zero MAX_CONCURRENT_STREAMS setting.
I don't think we should limit the server that way unless the client explicitly requests that.
The text was updated successfully, but these errors were encountered:
There was some head scratching involved when I couldn't get server push working between a h2 client and server. The workaround is to have the client always send a MAX_CONCURRENT_STREAMS setting, obliviously.
A PR to change that is welcome.
Will do soon. Any opinions on a default value ? I will also add a method to the server Builder, like the one that already exists in the client's.
h2/src/server.rs
Lines 1378 to 1379 in a8af235
This is arguably a bad default, given that it will block any server pushes unless the client explicitly sends a non-zero
MAX_CONCURRENT_STREAMS
setting.I don't think we should limit the server that way unless the client explicitly requests that.
The text was updated successfully, but these errors were encountered: