We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52f9b7b commit 7f1c000Copy full SHA for 7f1c000
src/proxy/http2/Http2ConnectionState.cc
@@ -1369,10 +1369,7 @@ Http2ConnectionState::send_connection_preface()
1369
configured_settings.set(HTTP2_SETTINGS_MAX_CONCURRENT_STREAMS, _adjust_concurrent_stream());
1370
1371
uint32_t const configured_initial_window_size = this->_get_configured_receive_session_window_size();
1372
- if (this->_has_dynamic_stream_window()) {
1373
- // Since this is the beginning of the connection and there are no streams
1374
- // yet, we can just set the stream window size to fill the entire session
1375
- // window size.
+ if (configured_initial_window_size > HTTP2_INITIAL_WINDOW_SIZE) {
1376
configured_settings.set(HTTP2_SETTINGS_INITIAL_WINDOW_SIZE, configured_initial_window_size);
1377
}
1378
0 commit comments