Commit bee91e9e authored by David Schinazi's avatar David Schinazi Committed by Commit Bot

Roll src/net/third_party/quiche/src/ 82875de9a..5c03085cf (11 commits)

https://quiche.googlesource.com/quiche.git/+log/82875de9a5fb..5c03085cff01

$ git log 82875de9a..5c03085cf --date=short --no-merges --format='%ad %ae %s'
2019-07-11 dschinazi Fix replacing connection IDs when initial crypters are in use
2019-07-11 fayang gfe-relnote: In QUIC, fix a misuse of largest_packet_peer_knows_is_acked when multiple packet number space is enabled. This is protected by existing FLAG_quic_supports_tls_handshake.
2019-07-11 dschinazi Fix QUIC version used when computing ALPN
2019-07-11 renjietang Remove static stream map as it's not used anymore.
2019-07-11 fayang gfe-relnote: Deprecate gfe2_reloadable_flag_quic_deprecate_queued_control_frames.
2019-07-10 renjietang Add more protection in QuicSpdySession::GetSpdyDataStream().
2019-07-10 renjietang Move Qbone control streams out of static_stream_map.
2019-07-10 fayang gfe-relnote: In QUIC, do not add connection ID of packets with unknown connection ID and no version to time wait list, instead, send appropriate reset depending on the packets' sizes and drop them. Protected by gfe2_reloadable_flag_quic_reject_unprocessable_packets_statelessly.
2019-07-10 bnc Add QpackProgressiveDecoder-generated error message to quic_offline_decoder output.
2019-07-09 bnc Use QuicStream::transport_version() in QuicSpdySession.
2019-07-09 bnc Remove HttpDecoder::set_visitor().

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

Change-Id: Idfb4a566e004c0fbc77ef56425cbcbd7884741cf
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1699255
Commit-Queue: Nick Harper <nharper@chromium.org>
Reviewed-by: default avatarNick Harper <nharper@chromium.org>
Cr-Commit-Position: refs/heads/master@{#676949}
parent 7b2a5e5b
...@@ -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': '82875de9a5fbb57cac3cea971aa249b321d24d96', 'quiche_revision': '5c03085cff01cd708ff13479ecd8957bc8184820',
# 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.
......
...@@ -93,12 +93,6 @@ QUIC_FLAG(int32_t, FLAGS_quic_lumpy_pacing_size, 1) ...@@ -93,12 +93,6 @@ QUIC_FLAG(int32_t, FLAGS_quic_lumpy_pacing_size, 1)
// pacing. // pacing.
QUIC_FLAG(double, FLAGS_quic_lumpy_pacing_cwnd_fraction, 0.25f) QUIC_FLAG(double, FLAGS_quic_lumpy_pacing_cwnd_fraction, 0.25f)
// If true, static streams in a QuicSession will be stored inside dynamic
// stream map. static_stream_map will no longer be used.
QUIC_FLAG(bool,
FLAGS_quic_reloadable_flag_quic_eliminate_static_stream_map_3,
true)
// Default enables QUIC ack decimation and adds a connection option to disable // Default enables QUIC ack decimation and adds a connection option to disable
// it. // it.
QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_ack_decimation, false) QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_enable_ack_decimation, false)
...@@ -218,11 +212,6 @@ QUIC_FLAG(bool, ...@@ -218,11 +212,6 @@ QUIC_FLAG(bool,
FLAGS_quic_reloadable_flag_quic_do_not_accept_stop_waiting, FLAGS_quic_reloadable_flag_quic_do_not_accept_stop_waiting,
false) false)
// If true, deprecate queued_control_frames_ from QuicPacketGenerator.
QUIC_FLAG(bool,
FLAGS_quic_reloadable_flag_quic_deprecate_queued_control_frames,
true)
// If true, set burst token to 2 in cwnd bootstrapping experiment. // If true, set burst token to 2 in cwnd bootstrapping experiment.
QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_conservative_bursts, false) QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_conservative_bursts, false)
...@@ -232,9 +221,6 @@ QUIC_FLAG(bool, ...@@ -232,9 +221,6 @@ QUIC_FLAG(bool,
FLAGS_quic_restart_flag_quic_do_not_override_connection_id, FLAGS_quic_restart_flag_quic_do_not_override_connection_id,
true) true)
// Do not send STOP_WAITING if no_stop_waiting_frame_ is true.
QUIC_FLAG(bool, FLAGS_quic_reloadable_flag_quic_simplify_stop_waiting, true)
// If true, export number of packets written per write operation histogram.") // If true, export number of packets written per write operation histogram.")
QUIC_FLAG(bool, FLAGS_quic_export_server_num_packets_per_write_histogram, false) QUIC_FLAG(bool, FLAGS_quic_export_server_num_packets_per_write_histogram, false)
...@@ -294,7 +280,7 @@ QUIC_FLAG(bool, FLAGS_quic_disable_version_negotiation_grease_randomness, false) ...@@ -294,7 +280,7 @@ QUIC_FLAG(bool, FLAGS_quic_disable_version_negotiation_grease_randomness, false)
// QuicVersionHasLongHeaderLengths is false. // QuicVersionHasLongHeaderLengths is false.
QUIC_FLAG(bool, QUIC_FLAG(bool,
FLAGS_quic_reloadable_flag_quic_fix_get_packet_header_size, FLAGS_quic_reloadable_flag_quic_fix_get_packet_header_size,
false) true)
// Calls ClearQueuedPackets after sending a connection close packet. // Calls ClearQueuedPackets after sending a connection close packet.
QUIC_FLAG( QUIC_FLAG(
...@@ -314,3 +300,17 @@ QUIC_FLAG( ...@@ -314,3 +300,17 @@ QUIC_FLAG(
bool, bool,
FLAGS_quic_reloadable_flag_quic_change_default_lumpy_pacing_size_to_two, FLAGS_quic_reloadable_flag_quic_change_default_lumpy_pacing_size_to_two,
false) false)
// If true, QuicSpdySession::GetSpdyDataStream() will close the connection
// if the returned stream is static.
QUIC_FLAG(bool,
FLAGS_quic_reloadable_flag_quic_handle_staticness_for_spdy_stream,
false)
// If true, do not add connection ID of packets with unknown connection ID
// and no version to time wait list, instead, send appropriate responses
// depending on the packets' sizes and drop them.
QUIC_FLAG(
bool,
FLAGS_quic_reloadable_flag_quic_reject_unprocessable_packets_statelessly,
false)
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