diff options
author | rtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-18 21:35:24 +0000 |
---|---|---|
committer | rtenneti@chromium.org <rtenneti@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-18 21:35:24 +0000 |
commit | a692ad9df989a376b3b4521dcb3a7b9da0e9a76d (patch) | |
tree | 03218e8438081a51582c36b7af7fa9df03167244 /net/quic/congestion_control/fix_rate_sender.cc | |
parent | 3a9ea2845c1de8b523923ab3cb9592d3cbe57fa0 (diff) | |
download | chromium_src-a692ad9df989a376b3b4521dcb3a7b9da0e9a76d.zip chromium_src-a692ad9df989a376b3b4521dcb3a7b9da0e9a76d.tar.gz chromium_src-a692ad9df989a376b3b4521dcb3a7b9da0e9a76d.tar.bz2 |
Land Recent QUIC Changes.
Cleanup and adding GetCongestionControlType.
Merge internal change: 71125139
https://codereview.chromium.org/400813002/
QUIC test only change to add track the observed loss rate in
SendAlgorithmSimulator.
Merge internal change: 71116533
https://codereview.chromium.org/399763004/
Minor formatting changes to keep the code similar to internal tree.
Merge internal change: 71059110
https://codereview.chromium.org/393283005/
Add more testing to QUIC's BbrTcpSender to verify it shares bandwidth
fairly with itself.
Also includes fixes to SendAlgorithmSimulator.
Merge internal change: 71000950
https://codereview.chromium.org/399793002/
Will merge BbrTcpSender changes in a future CL after the approvals.
Add a DLOG that indicates the peer sent us a QUIC_PUBLIC_RESET. Makes it
more obvious why the connection ended when running the quic_client.
Merge internal change: 70900278
https://codereview.chromium.org/399793002/
QUIC test only change to add a convenience operator for printing
SendAlgorithmSimulator stats.
Merge internal change: 70897829
https://codereview.chromium.org/399773003/
Adds dynamic setting of FEC group size based on the connection's current
congestion window.
There will be two triggers for transmitted an FEC packet, when
protection is required -- max_packets_per_fec_group, and an FEC alarm
that triggers an FEC packet if the FEC group has been open for long
enough. This CL implements dynamically setting
max_packets_per_fec_group. The FEC alarm will be written in a
subsequent CL.
Merge internal change: 70821636
https://codereview.chromium.org/398873003/
R=rch@chromium.org
Review URL: https://codereview.chromium.org/399153003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@284205 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/quic/congestion_control/fix_rate_sender.cc')
-rw-r--r-- | net/quic/congestion_control/fix_rate_sender.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/quic/congestion_control/fix_rate_sender.cc b/net/quic/congestion_control/fix_rate_sender.cc index 73482cc..51e16da 100644 --- a/net/quic/congestion_control/fix_rate_sender.cc +++ b/net/quic/congestion_control/fix_rate_sender.cc @@ -109,4 +109,8 @@ QuicByteCount FixRateSender::GetSlowStartThreshold() const { return 0; } +CongestionControlType FixRateSender::GetCongestionControlType() const { + return kFixRateCongestionControl; +} + } // namespace net |