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

Unified Diff: net/quic/core/quic_versions.cc

Issue 2512273002: turn off QUIC v36 (only used by chrome canary) (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « net/quic/core/quic_protocol_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_versions.cc
diff --git a/net/quic/core/quic_versions.cc b/net/quic/core/quic_versions.cc
index 363a59d91303c59b338510bd4dc1dfd105f61dd7..b8b2ea49bd37743c6399b629da9a6b6963b337d4 100644
--- a/net/quic/core/quic_versions.cc
+++ b/net/quic/core/quic_versions.cc
@@ -36,7 +36,7 @@ QuicVersionVector FilterSupportedVersions(QuicVersionVector versions) {
filtered_versions.clear(); // Guaranteed by spec not to change capacity.
for (QuicVersion version : versions) {
if (version == QUIC_VERSION_36) {
- if (FLAGS_quic_enable_version_36_v2) {
+ if (FLAGS_quic_enable_version_36_v3) {
filtered_versions.push_back(version);
}
} else {
« no previous file with comments | « net/quic/core/quic_protocol_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698