Cap --window-bits to 26 for QUIC

This commit is contained in:
Tatsuhiro Tsujikawa 2020-09-29 00:58:47 +09:00
parent 6ce952ad4a
commit 6b4be30c64
2 changed files with 2 additions and 2 deletions

View File

@ -2033,7 +2033,7 @@ Options:
Default: 1
-w, --window-bits=<N>
Sets the stream level initial window size to (2**<N>)-1.
For QUIC, <N> is capped to 23 (roughly 8MiB).
For QUIC, <N> is capped to 26 (roughly 64MiB).
Default: )"
<< config.window_bits << R"(
-W, --connection-window-bits=<N>

View File

@ -367,7 +367,7 @@ int Client::quic_init(const sockaddr *local_addr, socklen_t local_addrlen,
settings.initial_ts = timestamp(worker->loop);
auto &params = settings.transport_params;
auto max_stream_data =
std::min((1 << 23) - 1, (1 << config->window_bits) - 1);
std::min((1 << 26) - 1, (1 << config->window_bits) - 1);
params.initial_max_stream_data_bidi_local = max_stream_data;
params.initial_max_stream_data_uni = max_stream_data;
params.initial_max_data = (1 << config->connection_window_bits) - 1;