Commit 66d353a0 authored by Victor Vasiliev's avatar Victor Vasiliev Committed by Chromium LUCI CQ

Roll src/net/third_party/quiche/src/ 9aef11535..47d67c372 (16 commits)

https://quiche.googlesource.com/quiche.git/+log/9aef115356ce..47d67c37230e

$ git log 9aef11535..47d67c372 --date=short --no-merges --format='%ad %ae %s'
2021-01-21 haoyuewang Add PeerIssuedConnectionIdManager that handles NewConnectionId Frame.
2021-01-21 bnc Add TlsServerHandShaker::GetAcceptChValueForOrigin() to configure ACCEPT_CH value.
2021-01-21 bnc Parse received ALPS data in QuicSpdySession.
2021-01-20 vasilvv Disable feature flags that broke Chromium unit tests in order to move the roll forward.
2021-01-20 fayang Add debugging logging for b/177651625.
2021-01-19 renjietang In QuicConnection, log the most recent frame type in a packet.
2021-01-19 danzh Refactor QuicConnection::OnConnectionMigration() to use active_effective_peer_migration_type_ instead of passing in the address change type as a parameter.
2021-01-19 bnc Internal QUICHE change
2021-01-19 fayang Internal QUICHE change
2021-01-19 wub Internal QUICHE change
2021-01-19 fayang Internal QUICHE change
2021-01-19 fayang Internal QUICHE change
2021-01-19 fayang Internal QUICHE change
2021-01-19 fayang Internal QUICHE change
2021-01-19 ianswett Internal QUICHE change
2021-01-18 ianswett Internal QUICHE change

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

Change-Id: I0d83d35fbde4d6ffd5a426f2d4969ea3f8d772c0
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2642861Reviewed-by: default avatarDavid Schinazi <dschinazi@chromium.org>
Commit-Queue: Victor Vasiliev <vasilvv@chromium.org>
Cr-Commit-Position: refs/heads/master@{#845957}
parent 7a5097d6
...@@ -322,7 +322,7 @@ vars = { ...@@ -322,7 +322,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': '9aef115356ce48848790dd64a0f2d2ed9f55149b', 'quiche_revision': '47d67c37230eb0e2182079ab05cf9263a1d003f0',
# 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.
......
...@@ -447,6 +447,8 @@ const struct QuicErrorMapping { ...@@ -447,6 +447,8 @@ const struct QuicErrorMapping {
{quic::QUIC_TLS_UNRECOGNIZED_NAME, "quic::quic_tls_unrecognized_name"}, {quic::QUIC_TLS_UNRECOGNIZED_NAME, "quic::quic_tls_unrecognized_name"},
{quic::QUIC_TLS_CERTIFICATE_REQUIRED, {quic::QUIC_TLS_CERTIFICATE_REQUIRED,
"quic::quic_tls_certificate_required"}, "quic::quic_tls_certificate_required"},
{quic::QUIC_CONNECTION_ID_LIMIT_ERROR,
"quic::quic_connection_id_limit_error"},
// 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"}};
......
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