0

Roll src/net/third_party/quiche/src/ 1c782611f..69cbd6651 (8 commits)

https://quiche.googlesource.com/quiche.git/+log/1c782611f34f..69cbd66510dd

$ git log 1c782611f..69cbd6651 --date=short --no-merges --format='%ad %ae %s'
2021-11-02 vasilvv Perform header-based draft version negotiation in WebTransport over HTTP/3.
2021-11-02 haoyuewang Use absl::optional<StatelessResetToken> in place of a separate boolean and token on QuicConnection::PathState.
2021-11-02 dschinazi Internal change
2021-11-02 wub Add mTLS support for IETF QUIC.
2021-11-02 wub Internal change
2021-11-02 vasilvv Internal change
2021-11-02 haoyuewang Update quic::IsAppleMobile to quic::IsAppleClient for better coverage of Apple related QUIC reverse path validation crash: 1) Added coverage for iOS Youtube (from cr/406134264) & iMM (from Sherlog) user agents. 2) Added coverage for Mac traffic.
2021-11-01 dschinazi Internal change

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

Change-Id: I459134b409213f7a5fcf25199b354d10ecabc915
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3257046
Auto-Submit: Victor Vasiliev <vasilvv@chromium.org>
Reviewed-by: David Schinazi <dschinazi@chromium.org>
Commit-Queue: Victor Vasiliev <vasilvv@chromium.org>
Cr-Commit-Position: refs/heads/main@{#938142}
This commit is contained in:
Victor Vasiliev
2021-11-04 04:27:59 +00:00
committed by Chromium LUCI CQ
parent f7db21f288
commit cad3e88c34
2 changed files with 4 additions and 1 deletions

2
DEPS

@ -353,7 +353,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': '1c782611f34fc2d17018e766fbcb91d956c484fc',
'quiche_revision': '69cbd66510dd5a04355f1b41d763ac0e353df30a',
# 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.

@ -663,6 +663,9 @@ void DedicatedWebTransportHttp3Client::OnSessionReady(
session_ready_ = true;
http_response_info_ = std::make_unique<HttpResponseInfo>();
SpdyHeadersToHttpResponse(spdy_headers, http_response_info_.get());
// TODO(vasilvv): add support for this header in downstream tests and remove
// this.
http_response_info_->headers->RemoveHeader("sec-webtransport-http3-draft");
DCHECK(http_response_info_->headers);
}