summaryrefslogtreecommitdiffstats
path: root/net/tools/quic/quic_server_session.cc
diff options
context:
space:
mode:
authorrtenneti <rtenneti@chromium.org>2014-12-04 14:57:58 -0800
committerCommit bot <commit-bot@chromium.org>2014-12-04 22:58:31 +0000
commit89101772304452c3da761dfadc510a3aac829c82 (patch)
tree375c65a4b5e2be07c61ff0b0ef575888e6740e4c /net/tools/quic/quic_server_session.cc
parentee38e1d7cea77b253b0f30bf931e20a9da09f76e (diff)
downloadchromium_src-89101772304452c3da761dfadc510a3aac829c82.zip
chromium_src-89101772304452c3da761dfadc510a3aac829c82.tar.gz
chromium_src-89101772304452c3da761dfadc510a3aac829c82.tar.bz2
Land Recent QUIC Changes
QUIC connection stability prober - added goaway_received API call. Merge internal change: 81360468 https://codereview.chromium.org/740843004/ QUIC - minor changes to fix formatting. Merge internal change: 81347909 https://codereview.chromium.org/779133002/ Add the option to not send an explicit QuicConnectionClose frame when the reason is QUIC_CONNECTION_TIMED_OUT. This saves bandwidth and most importantly prevents the radio from being woken up to send a useless packet on mobile clients. Merge internal change: 81247453 https://codereview.chromium.org/761793003/ Remove QUIC's optional KATO config param, because it was never used. Merge internal change: 81198447 https://codereview.chromium.org/750093008/ Added flag for enabling pacing for the command-line options for internal servers. When false, pacing may still be configured via config options or by turning on BBR. When true, turns on pacing unconditionally. This flag is intended to be used for performance testing. Adds QUIC flag FLAGS_quic_enable_pacing for enabling pacing. Merge internal change: 81166053 https://codereview.chromium.org/777273002/ Only send a server config update when there is no other data to write. Merge internal change: 81147141 https://codereview.chromium.org/781853002/ Removing deprecated flag FLAGS_quic_drop_junk_packets Merge internal change: 81092917 https://codereview.chromium.org/748803007/ Merging of rollback of internal changelist 79416786. Rollback chromium CL: https://codereview.chromium.org/731593002/ Prevents XTs from dying on restart. *** Reason for rollback *** Possible corrupted pointer dereference in CL 78946498 must be rolled back. *** Original change description *** Fix QUIC end_to_end_test flakiness introduced by CL 78946498 N/A. Should affect tests only. CL 78946498 introduced some new tests for the "Small Red Button", a flag that, when enabled, forces QUIC to disconnect all active sessions and start rejecting traffic. Problem: The new CL made the en... *** Merge internal change: 81066584 https://codereview.chromium.org/779463006/ QUIC - Use uint16 for ports. No functionality change. Changes to keep the code similar to internal source tree. Merge internal change: 80778883 https://codereview.chromium.org/742513009/ R=rch@chromium.org Review URL: https://codereview.chromium.org/780123002 Cr-Commit-Position: refs/heads/master@{#306921}
Diffstat (limited to 'net/tools/quic/quic_server_session.cc')
-rw-r--r--net/tools/quic/quic_server_session.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/net/tools/quic/quic_server_session.cc b/net/tools/quic/quic_server_session.cc
index 9db2365..6e64da5 100644
--- a/net/tools/quic/quic_server_session.cc
+++ b/net/tools/quic/quic_server_session.cc
@@ -84,6 +84,11 @@ void QuicServerSession::OnCongestionWindowChange(QuicTime now) {
return;
}
+ // Only send updates when the application has no data to write.
+ if (HasDataToWrite()) {
+ return;
+ }
+
// If not enough time has passed since the last time we sent an update to the
// client, or not enough packets have been sent, then return early.
const QuicSentPacketManager& sent_packet_manager =