Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(425)

Unified Diff: net/quic/core/quic_flags_list.h

Issue 2550453002: Fixed integer signing bug in cubic bytes/packet implementation (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/quic/core/quic_flags_list.h
diff --git a/net/quic/core/quic_flags_list.h b/net/quic/core/quic_flags_list.h
index 785f0b3290fd5b635792d4ff929da3c5494ccf73..d4ce695e1b66e69491a2fadc912bc938c1ca2bc2 100644
--- a/net/quic/core/quic_flags_list.h
+++ b/net/quic/core/quic_flags_list.h
@@ -160,3 +160,7 @@ QUIC_FLAG(bool, FLAGS_quic_fix_version_manager, false)
// Add a new client connection options field to QuicOptions which is only used
// to configure client side features, such as congestion control.
QUIC_FLAG(bool, FLAGS_quic_client_connection_options, true)
+
+// If true, fix some casts that were causing off-by-one errors in QUIC's cubic
+// "convex" increases.
+QUIC_FLAG(bool, FLAGS_quic_fix_cubic_convex_mode, true)
Zhongyi Shi 2016/12/01 22:15:23 Do we want to turn on this by default? We haven't
Zhongyi Shi 2016/12/01 22:47:51 Fine. Found it turned off in the flag flip cl.

Powered by Google App Engine
This is Rietveld 408576698