Commit c89d4d25 authored by Zhongyi Shi's avatar Zhongyi Shi Committed by Commit Bot

Roll src/net/third_party/quiche/src/ b3359b0b0..8b6881bd2 (6 commits)

https://quiche.googlesource.com/quiche.git/+log/b3359b0b014d..8b6881bd2a9b

$ git log b3359b0b0..8b6881bd2 --date=short --no-merges --format='%ad %ae %s'
2020-07-21 bnc Update goaway frame field name and type. not protected.
2020-07-21 haoyuewang Deprercate gfe2_reloadable_flag_quic_enable_ack_decimation.
2020-07-20 fayang Disable server blackhole detection. protected by gfe2_reloadable_flag_quic_disable_server_blackhole_detection.
2020-07-20 wub Rename uberlossalgorithm.tuning_enabled_ to uberlossalgorithm.tuning_configured_. not protected.
2020-07-20 wub For quic loss detection tuning: return response_size from quicacklistenerinterface::onpacketacked in addition to the response_time, then use it to normalize the average http latency used for reward. stats not protected; lossdetectiontuner change protected by existing --gfe2_reloadable_flag_quic_enable_loss_detection_experiment_at_gfe.
2020-07-20 wub Deprecate --gfe2_reloadable_flag_quic_avoid_leak_writer_buffer.

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

Change-Id: Iea8bf2612491da1f58febd07f4f3157d4939671e
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2311310
Commit-Queue: Zhongyi Shi <zhongyi@chromium.org>
Auto-Submit: Zhongyi Shi <zhongyi@chromium.org>
Reviewed-by: default avatarNick Harper <nharper@chromium.org>
Cr-Commit-Position: refs/heads/master@{#790653}
parent 65aaf056
...@@ -325,7 +325,7 @@ vars = { ...@@ -325,7 +325,7 @@ vars = {
# Three lines of non-changing comments so that # Three lines of non-changing comments so that
# the commit queue can handle CLs rolling feed # the commit queue can handle CLs rolling feed
# and whatever else without interference from each other. # and whatever else without interference from each other.
'quiche_revision': 'b3359b0b014d81e6986700478969af146e025155', 'quiche_revision': '8b6881bd2a9b4a70dfd7076b00df0062784dd951',
# Three lines of non-changing comments so that # Three lines of non-changing comments so that
# the commit queue can handle CLs rolling ios_webkit # the commit queue can handle CLs rolling ios_webkit
# and whatever else without interference from each other. # and whatever else without interference from each other.
......
...@@ -405,3 +405,8 @@ QUIC_FLAG(bool, ...@@ -405,3 +405,8 @@ QUIC_FLAG(bool,
// When true, ParsedQuicVersionToString will print IETF drafts with format // When true, ParsedQuicVersionToString will print IETF drafts with format
// draft29 instead of ff00001d. // draft29 instead of ff00001d.
QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_print_draft_version, false) QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_fix_print_draft_version, false)
// If true, disable blackhole detection on server side.
QUIC_FLAG(bool,
FLAGS_quic_reloadable_flag_quic_disable_server_blackhole_detection,
false)
...@@ -195,7 +195,7 @@ void QuicHttp3Logger::OnGoAwayFrameReceived(const quic::GoAwayFrame& frame) { ...@@ -195,7 +195,7 @@ void QuicHttp3Logger::OnGoAwayFrameReceived(const quic::GoAwayFrame& frame) {
return; return;
} }
net_log_.AddEventWithIntParams(NetLogEventType::HTTP3_GOAWAY_RECEIVED, net_log_.AddEventWithIntParams(NetLogEventType::HTTP3_GOAWAY_RECEIVED,
"stream_id", frame.stream_id); "stream_id", frame.id);
} }
void QuicHttp3Logger::OnMaxPushIdFrameReceived( void QuicHttp3Logger::OnMaxPushIdFrameReceived(
......
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