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

Roll src/net/third_party/quiche/src/ 63bdfe586..425c25a8a (10 commits)

https://quiche.googlesource.com/quiche.git/+log/63bdfe586f8c..425c25a8ad2d

$ git log 63bdfe586..425c25a8a --date=short --no-merges --format='%ad %ae %s'
2021-01-07 bnc Add SETTINGS_DEPRECATE_HTTP2_PRIORITIES.
2021-01-07 haoyuewang Add supports to write NewConnectionId/RetireConnectionId via QuicControlFrameManager.
2021-01-07 wub Refactor TlsServerHandshaker to use ProofSourceHandle for cert selection and signature.
2021-01-06 wub In QUIC BBRv2, reset max_bytes_delivered_in_round when a new round starts.
2021-01-06 haoyuewang Add new & retire ConnectionId interface to QuicSession::visitor and implement them in (Gfe)QuicDispatcher.
2021-01-05 haoyuewang Add multiple CID per connection support to time_wait_list.
2021-01-05 quiche-dev Rename gfe2_restart_flag_always_promote_chunk_if_coalesced_2 and remove "enabling_blocked_by".
2020-12-30 vasilvv Fix include paths for quiche/common/platform/impl.
2020-12-30 fayang Fix QUIC_BUG in FlushAckFrame to check whether frames is empty.
2020-12-30 danzh Make QuicConnection count bytes sent/received in probing packets on alternative paths.

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

Change-Id: I492a96c7f055561f465fe0e7ea5b9907906548d1
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2617418Reviewed-by: default avatarDavid Schinazi <dschinazi@chromium.org>
Commit-Queue: Victor Vasiliev <vasilvv@chromium.org>
Cr-Commit-Position: refs/heads/master@{#841406}
parent 37d91a91
......@@ -318,7 +318,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': '63bdfe586f8ceddf5e0823b75b1c595cbd380b2e',
'quiche_revision': '425c25a8ad2d190f61531fd46e0a65050cc1b98a',
# 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.
......
......@@ -156,6 +156,11 @@ class NET_EXPORT QuicTransportClient
}
void OnStopSendingReceived(
const quic::QuicStopSendingFrame& /*frame*/) override {}
void OnNewConnectionIdSent(
const quic::QuicConnectionId& /*server_connection_id*/,
const quic::QuicConnectionId& /*new_connecition_id*/) override {}
void OnConnectionIdRetired(
const quic::QuicConnectionId& /*server_connection_id*/) override {}
private:
// State of the connection establishment process.
......
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