diff options
Diffstat (limited to 'net/quic/congestion_control/tcp_cubic_sender.cc')
-rw-r--r-- | net/quic/congestion_control/tcp_cubic_sender.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/quic/congestion_control/tcp_cubic_sender.cc b/net/quic/congestion_control/tcp_cubic_sender.cc index 36164b1..14804a9 100644 --- a/net/quic/congestion_control/tcp_cubic_sender.cc +++ b/net/quic/congestion_control/tcp_cubic_sender.cc @@ -13,7 +13,7 @@ namespace net { namespace { // Constants based on TCP defaults. const int64 kHybridStartLowWindow = 16; -const QuicByteCount kMaxSegmentSize = kMaxPacketSize; +const QuicByteCount kMaxSegmentSize = kDefaultTCPMSS; const QuicByteCount kDefaultReceiveWindow = 64000; const int64 kInitialCongestionWindow = 10; const int kMaxBurstLength = 3; |