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

Unified Diff: net/quic/quic_protocol.h

Issue 366863002: Land Recent QUIC Changes. (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..38254ff564b8e14d1a727ccd57463453bc68e16c 100644
--- a/net/quic/quic_protocol.h
+++ b/net/quic/quic_protocol.h
@@ -278,11 +278,12 @@ enum QuicVersion {
// Special case to indicate unknown/unsupported QUIC version.
QUIC_VERSION_UNSUPPORTED = 0,
- QUIC_VERSION_15 = 15,
- QUIC_VERSION_16 = 16,
- QUIC_VERSION_18 = 18,
- QUIC_VERSION_19 = 19,
- QUIC_VERSION_20 = 20, // Current version.
+ QUIC_VERSION_15 = 15, // Revived packets in ReceivedPacketInfo.
+ QUIC_VERSION_16 = 16, // STOP_WAITING frame.
+ QUIC_VERSION_18 = 18, // PING frame.
+ QUIC_VERSION_19 = 19, // Session level flow control.
+ QUIC_VERSION_20 = 20, // Independent stream/session flow control windows.
wtc 2014/07/02 22:56:48 In these two comments, did you mean "session level
ramant (doing other things) 2014/07/16 19:43:36 Done.
+ QUIC_VERSION_21 = 21, // Headers/crypto streams are flow controlled.
};
// 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