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

Unified Diff: net/quic/quic_protocol.h

Issue 368803003: QUIC_VERSION_21: headers and crypto streams are now flow controlled at (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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
Index: net/quic/quic_protocol.h
diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h
index 60f8167e0456edeec97f2e9b8a263d6e93c0d123..d76e12ae7c11c7ec45006a786a5eb0d58bb1b4da 100644
--- a/net/quic/quic_protocol.h
+++ b/net/quic/quic_protocol.h
@@ -282,7 +282,8 @@ enum QuicVersion {
QUIC_VERSION_16 = 16,
QUIC_VERSION_18 = 18,
QUIC_VERSION_19 = 19,
- QUIC_VERSION_20 = 20, // Current version.
+ QUIC_VERSION_20 = 20,
+ QUIC_VERSION_21 = 21, // Current version.
};
// This vector contains QUIC versions which we currently support.
@@ -292,7 +293,8 @@ enum QuicVersion {
//
// IMPORTANT: if you are addding to this list, follow the instructions at
// http://sites/quic/adding-and-removing-versions
-static const QuicVersion kSupportedQuicVersions[] = {QUIC_VERSION_20,
+static const QuicVersion kSupportedQuicVersions[] = {QUIC_VERSION_21,
+ QUIC_VERSION_20,
QUIC_VERSION_19,
QUIC_VERSION_18,
QUIC_VERSION_16,

Powered by Google App Engine
This is Rietveld 408576698