diff options
author | rtenneti <rtenneti@chromium.org> | 2014-10-29 07:03:19 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-29 14:03:46 +0000 |
commit | 08b0143887b593fd46819ebcebfd07b1181cf0f5 (patch) | |
tree | eb5d4727d98bea1ed766a49c3b84464c2a81fe72 /net/quic/quic_server_session.cc | |
parent | c57b93f1e66e06bbddb07348a2816aa4a7df1051 (diff) | |
download | chromium_src-08b0143887b593fd46819ebcebfd07b1181cf0f5.zip chromium_src-08b0143887b593fd46819ebcebfd07b1181cf0f5.tar.gz chromium_src-08b0143887b593fd46819ebcebfd07b1181cf0f5.tar.bz2 |
Land Recent QUIC Changes.
Add a new QUIC common cert set to reflect the new GIA cert.
Also rename the existing common cert set *.inc files.
Merge internal change: 78450265
https://codereview.chromium.org/683343002/
Removes QuicTcpCongestionWindow type and adds a new QuicPacketCount
type.
The CL also moves to using QuicPacketCount instead of
QuicTcpCongestionWindow in TCP congestion control code. Using a
QuicPacketCount type makes it obvious for congestion control
computations that a variable of this type needs to be converted when
comparing with other congestion control variables (such as
|bytes_in_flight|) that are maintained as QuicByteCount. As a type,
QuicTcpCongestionWindow currently doesn't seem to have any other
semantic value.
Merge internal change: 78399967
https://codereview.chromium.org/644853004/
Fix flaky test in QuicSessionTest. Port of
https://codereview.chromium.org/669963003/ to internal source tree.
Merge internal change: 78351892
This CL was already in chromium except for small comment change.
https://codereview.chromium.org/684783006/
Stop sending QUIC SCUP message immediately after handshake.
Merge internal change: 78296626
https://codereview.chromium.org/684983002/
Delete rolled out FLAGS_quic_store_cached_network_params_from_chlo
Merge internal change: 78276864
https://codereview.chromium.org/669663004/
Modifies RTT code to use uncorrected measured rtt for min_rtt and to
only correct for ack_delay when recording smoothed_rtt and when
ack_delay is sane.
Merge internal change: 78269418
https://codereview.chromium.org/685893002/
Flag protect enabling of QUIC's BBR congestion control algorithm.
Merge internal change: 78229291
https://codereview.chromium.org/687643004/
Further simplify QUIC's UnackedPacketMap now that the interface is
unified on AddSentPacket.
Merge internal change: 78219252
https://codereview.chromium.org/685883004/
R=rch@chromium.org,
TBR=mkosiba@chromium.org, mnaganov@chromium.org
Review URL: https://codereview.chromium.org/689483002
Cr-Commit-Position: refs/heads/master@{#301825}
Diffstat (limited to 'net/quic/quic_server_session.cc')
-rw-r--r-- | net/quic/quic_server_session.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/quic/quic_server_session.cc b/net/quic/quic_server_session.cc index c55496e..9d45162 100644 --- a/net/quic/quic_server_session.cc +++ b/net/quic/quic_server_session.cc @@ -133,7 +133,7 @@ void QuicServerSession::OnCongestionWindowChange(QuicTime now) { cached_network_params.set_serving_region(serving_region_); } - crypto_stream_->SendServerConfigUpdate(&cached_network_params, false); + crypto_stream_->SendServerConfigUpdate(&cached_network_params); last_server_config_update_time_ = now; } |