summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorrtenneti <rtenneti@chromium.org>2015-03-28 06:49:54 -0700
committerCommit bot <commit-bot@chromium.org>2015-03-28 13:50:30 +0000
commit374e5688645005b741b2ef9037ee84a29f115706 (patch)
treed7945a9eab01d727463d5253f8461721e37be9f9 /net
parent10f7018ab566f7cd7ccea390abf287d6e8ddcedf (diff)
downloadchromium_src-374e5688645005b741b2ef9037ee84a29f115706.zip
chromium_src-374e5688645005b741b2ef9037ee84a29f115706.tar.gz
chromium_src-374e5688645005b741b2ef9037ee84a29f115706.tar.bz2
QUIC - Added the following finch trial parameters to disable QUIC if
the packet loss rate is bad for multiple connections in a row. + max_number_of_lossy_connections: specifies the maximum number of connections with high packet loss in a row after which QUIC will be disabled. + packet_loss_threshold: specifies packet loss rate in franction after which a connection is closed and is considered as a lossy connection. QUIC changes to support this were checked in the following CL: https://codereview.chromium.org/1025573002/ R=rch@chromium.org Review URL: https://codereview.chromium.org/1041953003 Cr-Commit-Position: refs/heads/master@{#322704}
Diffstat (limited to 'net')
-rw-r--r--net/quic/quic_stream_factory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/quic/quic_stream_factory.h b/net/quic/quic_stream_factory.h
index 48e9996..df69768 100644
--- a/net/quic/quic_stream_factory.h
+++ b/net/quic/quic_stream_factory.h
@@ -342,7 +342,7 @@ class NET_EXPORT_PRIVATE QuicStreamFactory
// Specifies the maximum number of connections with high packet loss in a row
// after which QUIC will be disabled.
int max_number_of_lossy_connections_;
- // Specifies packet loss rate in franction after which a connection is closed
+ // Specifies packet loss rate in fraction after which a connection is closed
// and is considered as a lossy connection.
float packet_loss_threshold_;
// Count number of lossy connections by port.