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

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

Issue 2242423002: Disable QUIC versions less than v32, protected by --FLAGS_quic_disable_pre_32. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@130124951
Patch Set: Created 4 years, 4 months 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_flags.cc ('k') | net/quic/core/quic_protocol.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_protocol.h
diff --git a/net/quic/core/quic_protocol.h b/net/quic/core/quic_protocol.h
index 6698b4f3541ed0a9ef69cf5ecba892b8ee8f5984..f00d39e9b0eeb3b98cdffd6fc8229d94483f9dfb 100644
--- a/net/quic/core/quic_protocol.h
+++ b/net/quic/core/quic_protocol.h
@@ -1421,10 +1421,12 @@ class NET_EXPORT_PRIVATE QuicVersionManager {
const QuicVersionVector& GetSupportedVersions();
private:
+ // FLAGS_quic_disable_pre_32
+ bool disable_pre_32_;
// FLAGS_quic_enable_version_35
- bool enable_quic_version_35_;
+ bool enable_version_35_;
// FLAGS_quic_enable_version_36_v2
- bool enable_quic_version_36_;
+ bool enable_version_36_;
// The list of versions that may be supported.
QuicVersionVector allowed_supported_versions_;
// This vector contains QUIC versions which are currently supported based
« no previous file with comments | « net/quic/core/quic_flags.cc ('k') | net/quic/core/quic_protocol.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698