Commit 68b9dea4 authored by Dan Zhang's avatar Dan Zhang Committed by Commit Bot

Roll src/net/third_party/quiche/src/ a1662b3f0..442f894c7 (15 commits)

https://quiche.googlesource.com/quiche.git/+log/a1662b3f0e92..442f894c74b5

$ git log a1662b3f0..442f894c7 --date=short --no-merges --format='%ad %ae %s'
2020-11-11 danzh Move const declarations into quic_stream_sequencer_buffer.cc
2020-11-11 renjietang In QUIC, use using for alias declaration.
2020-11-11 wub Internal QUICHE change
2020-11-11 bnc Send QUIC GOAWAY after given time even if connection not idle.
2020-11-11 wub Change --quic_bbr2_default_inflight_hi_headroom from 0.01 to 0.15.
2020-11-11 bnc Use maximum stream ID in GOAWAY frame for graceful shutdown.
2020-11-10 quiche-dev Prevent QUIC handshake messages from flooding GFE logs
2020-11-10 bnc Implement new PRIORITY_UPDATE frame.
2020-11-10 danzh Fix QUICHE build issue in Chromium.
2020-11-10 quiche-dev Unify gfe2::RecordingHeadersHandler and spdy::TestHeadersHandler to spdy::RecordingHeadersHandler.
2020-11-10 quiche-dev Include prefix in SSL_early_data_reason_string.
2020-11-10 haoyuewang Replace absl::variant constructor call with emplace to fix clang10 compilation error.
2020-11-10 nharper Internal QUICHE change
2020-11-09 haoyuewang Allocate the size of stream sequencer buffer block pointer container on demand. This should save 16K bytes memory per stream on the server side, as currently blocks_ in QuicStreamSequencerBuffer starts with 2048 nullptr as soon as there is any data to read.
2020-11-09 renjietang Replace gfe2_reloadable_flag_quic_split_up_send_rst with gfe2_reloadable_flag_quic_split_up_send_rst_2.

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

R=bnc@chromium.org

Change-Id: I508120bb0d0858acd948f1b5a3fe5a9a1cf54021
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2533540
Commit-Queue: Bence Béky <bnc@chromium.org>
Reviewed-by: default avatarBence Béky <bnc@chromium.org>
Auto-Submit: Dan Zhang <danzh@chromium.org>
Cr-Commit-Position: refs/heads/master@{#826752}
parent eea68277
...@@ -328,7 +328,7 @@ vars = { ...@@ -328,7 +328,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': 'a1662b3f0e9245cddf02336826aa19afa1f045ca', 'quiche_revision': '442f894c74b535b1927141b2d0cab84772dee516',
# 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.
......
...@@ -430,6 +430,7 @@ const struct QuicErrorMapping { ...@@ -430,6 +430,7 @@ const struct QuicErrorMapping {
{static_cast<quic::QuicErrorCode>(101), {static_cast<quic::QuicErrorCode>(101),
"quic.invalid.application_close_data"}, "quic.invalid.application_close_data"},
{quic::QUIC_MAX_AGE_TIMEOUT, "quic.quic_max_age_timeout"},
// No error. Used as bound while iterating. // No error. Used as bound while iterating.
{quic::QUIC_LAST_ERROR, "quic.last_error"}}; {quic::QUIC_LAST_ERROR, "quic.last_error"}};
......
...@@ -581,6 +581,8 @@ source_set("quiche") { ...@@ -581,6 +581,8 @@ source_set("quiche") {
"src/spdy/core/http2_priority_write_scheduler.h", "src/spdy/core/http2_priority_write_scheduler.h",
"src/spdy/core/lifo_write_scheduler.h", "src/spdy/core/lifo_write_scheduler.h",
"src/spdy/core/priority_write_scheduler.h", "src/spdy/core/priority_write_scheduler.h",
"src/spdy/core/recording_headers_handler.cc",
"src/spdy/core/recording_headers_handler.h",
"src/spdy/core/spdy_alt_svc_wire_format.cc", "src/spdy/core/spdy_alt_svc_wire_format.cc",
"src/spdy/core/spdy_alt_svc_wire_format.h", "src/spdy/core/spdy_alt_svc_wire_format.h",
"src/spdy/core/spdy_bitmasks.h", "src/spdy/core/spdy_bitmasks.h",
......
...@@ -61753,6 +61753,7 @@ https://www.dmtf.org/sites/default/files/standards/documents/DSP0134_2.7.1.pdf ...@@ -61753,6 +61753,7 @@ https://www.dmtf.org/sites/default/files/standards/documents/DSP0134_2.7.1.pdf
<int value="188" label="QUIC_QPACK_DECODER_STREAM_INCREMENT_OVERFLOW"/> <int value="188" label="QUIC_QPACK_DECODER_STREAM_INCREMENT_OVERFLOW"/>
<int value="189" label="QUIC_QPACK_DECODER_STREAM_IMPOSSIBLE_INSERT_COUNT"/> <int value="189" label="QUIC_QPACK_DECODER_STREAM_IMPOSSIBLE_INSERT_COUNT"/>
<int value="190" label="QUIC_QPACK_DECODER_STREAM_INCORRECT_ACKNOWLEDGEMENT"/> <int value="190" label="QUIC_QPACK_DECODER_STREAM_INCORRECT_ACKNOWLEDGEMENT"/>
<int value="191" label="QUIC_MAX_AGE_TIMEOUT"/>
</enum> </enum>
<enum name="QuicFailToSerializePacketLocation"> <enum name="QuicFailToSerializePacketLocation">
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