Commit 4ae1ea63 authored by Haoyue Wang's avatar Haoyue Wang Committed by Commit Bot

Roll src/net/third_party/quiche/src/ 8aff71f6f..517beaa47 (5 commits)

    https://quiche.googlesource.com/quiche.git/+log/8aff71f6f3e1..517beaa4782d

    $ git log 8aff71f6f..517beaa47 --date=short --no-merges --format='%ad %ae %s'
    2020-05-26 ianswett Check has_handshake in quicpacketcreator::consumedata rather than delegate to shouldgeneratepacket.  no functional change, not flag protected.
    2020-05-26 quiche-dev Fix errors found by Clang warning -Wdangling-gsl
    2020-05-25 ianswett Add a new 'b2hi' connection option which limits the reduction of inflight_hi based on cwnd instead of target inflight.  protected by gfe2_reloadable_flag_quic_bbr2_limit_inflight_hi.
    2020-05-22 wub In quic loss detection tuner, do not give feedback if a connection 1) has no packets lost, 2) would still have no packets lost if the reordering_shift increased by one. protected by existing flag --gfe2_reloadable_flag_quic_enable_loss_detection_experiment_at_gfe.
    2020-05-21 dschinazi Rename some transport parameters

    Created with:
      roll-dep src/net/third_party/quiche/src src/third_party/quic_trace/src

Roll src/net/third_party/quiche/src/ 8aff71f6f..517beaa47 (5 commits)

https://quiche.googlesource.com/quiche.git/+log/8aff71f6f3e1..517beaa4782d

$ git log 8aff71f6f..517beaa47 --date=short --no-merges --format='%ad %ae %s'
2020-05-26 ianswett Check has_handshake in quicpacketcreator::consumedata rather than delegate to shouldgeneratepacket.  no functional change, not flag protected.
2020-05-26 quiche-dev Fix errors found by Clang warning -Wdangling-gsl
2020-05-25 ianswett Add a new 'b2hi' connection option which limits the reduction of inflight_hi based on cwnd instead of target inflight.  protected by gfe2_reloadable_flag_quic_bbr2_limit_inflight_hi.
2020-05-22 wub In quic loss detection tuner, do not give feedback if a connection 1) has no packets lost, 2) would still have no packets lost if the reordering_shift increased by one. protected by existing flag --gfe2_reloadable_flag_quic_enable_loss_detection_experiment_at_gfe.
2020-05-21 dschinazi Rename some transport parameters

Created with:
  roll-dep src/net/third_party/quiche/src src/third_party/quic_trace/src

Change-Id: I4ea2e5add772e4c619f8acf87d197e96862163a1
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2216638Reviewed-by: default avatarDavid Schinazi <dschinazi@chromium.org>
Commit-Queue: David Schinazi <dschinazi@chromium.org>
Auto-Submit: Haoyue Wang <haoyuewang@chromium.org>
Cr-Commit-Position: refs/heads/master@{#772027}
parent ab4c1e67
......@@ -305,7 +305,7 @@ vars = {
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling feed
# and whatever else without interference from each other.
'quiche_revision': '8aff71f6f3e170724cfd5b1f7c43a07e29b160be',
'quiche_revision': '517beaa4782d4ea46e207004ff1bcedca8cc6adf',
# Three lines of non-changing comments so that
# the commit queue can handle CLs rolling ios_webkit
# and whatever else without interference from each other.
......
......@@ -53,11 +53,11 @@ std::unique_ptr<quic::TransportParameters> MakeFakeTransportParams() {
params->version = kFakeVersionLabel;
params->supported_versions.push_back(kFakeVersionLabel);
params->supported_versions.push_back(kFakeVersionLabel2);
params->idle_timeout_milliseconds.set_value(kFakeIdleTimeoutMilliseconds);
params->max_idle_timeout_ms.set_value(kFakeIdleTimeoutMilliseconds);
params->stateless_reset_token = CreateFakeStatelessResetToken();
params->max_packet_size.set_value(kFakeMaxPacketSize);
params->max_udp_payload_size.set_value(kFakeMaxPacketSize);
params->initial_max_data.set_value(kFakeInitialMaxData);
params->disable_migration = kFakeDisableMigration;
params->disable_active_migration = kFakeDisableMigration;
params->custom_parameters[kCustomParameter1] = kCustomParameter1Value;
params->custom_parameters[kCustomParameter2] = kCustomParameter2Value;
return params;
......
......@@ -444,3 +444,7 @@ QUIC_FLAG(
// If true, enable QUIC version h3-28.
QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_version_draft_28, false)
// If true, the B2HI connection option limits reduction of inflight_hi to
// (1-Beta)*CWND.
QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_bbr2_limit_inflight_hi, false)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment