Commit d3074404 authored by Bence Béky's avatar Bence Béky Committed by Commit Bot

Roll src/net/third_party/quiche/src/ 58ac6508f..13750a860 (8 commits)

https://quiche.googlesource.com/quiche.git/+log/58ac6508f78f..13750a860a35

$ git log 58ac6508f..13750a860 --date=short --no-merges --format='%ad %ae %s'
2019-07-17 bnc Implement blocked decoding in qpack_offline_decoder.
2019-07-17 bnc Move PRIORITY frame constants into http_frames.h.
2019-07-17 dschinazi Update QUIC transport parameters for draft-22
2019-07-17 wub gfe-relnote: Allow client to enable QUIC bbr2 congestion control on server. Protected by --gfe2_reloadable_flag_quic_allow_client_enabled_bbr_v2.
2019-07-17 dschinazi Update QUIC TLS salt for draft-22
2019-07-17 fayang Automated g4 rollback of changelist 257008406.
2019-07-17 bnc Add http3_constants.h for HTTP/3 and QPACK unidirectional stream types and settings identifiers.
2019-07-17 renjietang Move priority frame's exclusive bit from bit #7 to bit #4.

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

Change-Id: I833c72f77e98738733de80cdc01d64a1ea611333
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1707490
Auto-Submit: Bence Béky <bnc@chromium.org>
Commit-Queue: Ryan Hamilton <rch@chromium.org>
Reviewed-by: default avatarRyan Hamilton <rch@chromium.org>
Cr-Commit-Position: refs/heads/master@{#678561}
parent 8fa6712b
...@@ -283,7 +283,7 @@ vars = { ...@@ -283,7 +283,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': '58ac6508f78fd1a1685d9ad23b3fc084ee54e764', 'quiche_revision': '13750a860a353d5491d8eed74d96d609886fa513',
# 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.
......
...@@ -325,3 +325,11 @@ QUIC_FLAG(int64_t, FLAGS_quic_max_tracked_packet_count, 10000) ...@@ -325,3 +325,11 @@ QUIC_FLAG(int64_t, FLAGS_quic_max_tracked_packet_count, 10000)
// If true, HTTP request header names sent from QuicSpdyClientBase(and // If true, HTTP request header names sent from QuicSpdyClientBase(and
// descendents) will be automatically converted to lower case. // descendents) will be automatically converted to lower case.
QUIC_FLAG(bool, FLAGS_quic_client_convert_http_header_name_to_lowercase, true) QUIC_FLAG(bool, FLAGS_quic_client_convert_http_header_name_to_lowercase, true)
// If true, do not send STOP_WAITING if no_stop_waiting_frame_.
QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_simplify_stop_waiting, false)
// If true, allow client to enable BBRv2 on server via connection option 'B2ON'.
QUIC_FLAG(bool,
FLAGS_quic_reloadable_flag_quic_allow_client_enabled_bbr_v2,
false)
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
#include "net/quic/mock_crypto_client_stream.h" #include "net/quic/mock_crypto_client_stream.h"
#include "net/quic/quic_chromium_client_session.h" #include "net/quic/quic_chromium_client_session.h"
#include "net/quic/quic_http_utils.h" #include "net/quic/quic_http_utils.h"
#include "net/third_party/quiche/src/quic/core/http/quic_spdy_session.h" #include "net/third_party/quiche/src/quic/core/http/http_constants.h"
#include "net/third_party/quiche/src/quic/core/quic_framer.h" #include "net/third_party/quiche/src/quic/core/quic_framer.h"
#include "net/third_party/quiche/src/quic/core/quic_utils.h" #include "net/third_party/quiche/src/quic/core/quic_utils.h"
#include "net/third_party/quiche/src/quic/test_tools/mock_random.h" #include "net/third_party/quiche/src/quic/test_tools/mock_random.h"
......
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