Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / net / quic / crypto / crypto_protocol.h
index e2d6147..c508147 100644 (file)
@@ -5,9 +5,7 @@
 #ifndef NET_QUIC_CRYPTO_CRYPTO_PROTOCOL_H_
 #define NET_QUIC_CRYPTO_CRYPTO_PROTOCOL_H_
 
-#include <map>
 #include <string>
-#include <vector>
 
 #include "net/base/net_export.h"
 #include "net/quic/quic_protocol.h"
@@ -26,7 +24,6 @@
 namespace net {
 
 typedef std::string ServerConfigID;
-typedef std::map<QuicTag, std::string> QuicTagValueMap;
 
 const QuicTag kCHLO = TAG('C', 'H', 'L', 'O');  // Client hello
 const QuicTag kSHLO = TAG('S', 'H', 'L', 'O');  // Server hello
@@ -34,6 +31,7 @@ const QuicTag kSCFG = TAG('S', 'C', 'F', 'G');  // Server config
 const QuicTag kREJ  = TAG('R', 'E', 'J', '\0'); // Reject
 const QuicTag kCETV = TAG('C', 'E', 'T', 'V');  // Client encrypted tag-value
                                                 // pairs
+const QuicTag kPRST = TAG('P', 'R', 'S', 'T');  // Public reset
 
 // Key exchange methods
 const QuicTag kP256 = TAG('P', '2', '5', '6');  // ECDH, Curve P-256
@@ -42,12 +40,17 @@ const QuicTag kC255 = TAG('C', '2', '5', '5');  // ECDH, Curve25519
 // AEAD algorithms
 const QuicTag kNULL = TAG('N', 'U', 'L', 'N');  // null algorithm
 const QuicTag kAESG = TAG('A', 'E', 'S', 'G');  // AES128 + GCM-12
+const QuicTag kCC12 = TAG('C', 'C', '1', '2');  // ChaCha20 + Poly1305
 
 // Congestion control feedback types
 const QuicTag kQBIC = TAG('Q', 'B', 'I', 'C');  // TCP cubic
 const QuicTag kPACE = TAG('P', 'A', 'C', 'E');  // Paced TCP cubic
 const QuicTag kINAR = TAG('I', 'N', 'A', 'R');  // Inter arrival
 
+// Loss detection algorithm types
+const QuicTag kNACK = TAG('N', 'A', 'C', 'K');  // TCP style nack counting
+const QuicTag kTIME = TAG('T', 'I', 'M', 'E');  // Time based
+
 // Proof types (i.e. certificate types)
 // NOTE: although it would be silly to do so, specifying both kX509 and kX59R
 // is allowed and is equivalent to specifying only kX509.
@@ -58,8 +61,6 @@ const QuicTag kX59R = TAG('X', '5', '9', 'R');  // X.509 certificate, RSA keys
 const QuicTag kCHID = TAG('C', 'H', 'I', 'D');  // Channel ID.
 
 // Client hello tags
-// TODO(rch): Remove once we remove QUIC_VERSION_12.
-const QuicTag kVERS = TAG('V', 'E', 'R', 'S');  // Version (obsolete)
 const QuicTag kVER  = TAG('V', 'E', 'R', '\0'); // Version (new)
 const QuicTag kNONC = TAG('N', 'O', 'N', 'C');  // The client's nonce
 const QuicTag kKEXS = TAG('K', 'E', 'X', 'S');  // Key exchange methods
@@ -67,6 +68,8 @@ const QuicTag kAEAD = TAG('A', 'E', 'A', 'D');  // Authenticated
                                                 // encryption algorithms
 const QuicTag kCGST = TAG('C', 'G', 'S', 'T');  // Congestion control
                                                 // feedback types
+// kLOSS was 'L', 'O', 'S', 'S', but was changed from a tag vector to a tag.
+const QuicTag kLOSS = TAG('L', 'O', 'S', 'A');  // Loss detection algorithms
 const QuicTag kICSL = TAG('I', 'C', 'S', 'L');  // Idle connection state
                                                 // lifetime
 const QuicTag kKATO = TAG('K', 'A', 'T', 'O');  // Keepalive timeout
@@ -84,13 +87,19 @@ const QuicTag kPROF = TAG('P', 'R', 'O', 'F');  // Proof (signature).
 const QuicTag kCCS  = TAG('C', 'C', 'S', 0);    // Common certificate set
 const QuicTag kCCRT = TAG('C', 'C', 'R', 'T');  // Cached certificate
 const QuicTag kEXPY = TAG('E', 'X', 'P', 'Y');  // Expiry
+const QuicTag kIFCW = TAG('I', 'F', 'C', 'W');  // Initial flow control receive
+                                                // window.
+
+// Server hello tags
+const QuicTag kCADR = TAG('C', 'A', 'D', 'R');  // Client IP address and port
 
 // CETV tags
 const QuicTag kCIDK = TAG('C', 'I', 'D', 'K');  // ChannelID key
 const QuicTag kCIDS = TAG('C', 'I', 'D', 'S');  // ChannelID signature
 
-// Server hello tags
-const QuicTag kCADR = TAG('C', 'A', 'D', 'R');  // Client IP address and port
+// Public reset tags
+const QuicTag kRNON = TAG('R', 'N', 'O', 'N');  // Public reset nonce proof
+const QuicTag kRSEQ = TAG('R', 'S', 'E', 'Q');  // Rejected sequence number
 
 // Universal tags
 const QuicTag kPAD  = TAG('P', 'A', 'D', '\0'); // Padding
@@ -138,12 +147,6 @@ const char kProofSignatureLabel[] = "QUIC server config signature";
 // rejection message.
 const size_t kClientHelloMinimumSize = 1024;
 
-// kClientHelloMinimumSizeOld is the previous value of kClientHelloMinimumSize.
-// To support old clients, the server only enforces this size.
-// TODO(wtc): Replace it with kClientHelloMinimumSize when we drop support for
-// QUIC_VERSION_12 clients.
-const size_t kClientHelloMinimumSizeOld = 512;
-
 }  // namespace net
 
 #endif  // NET_QUIC_CRYPTO_CRYPTO_PROTOCOL_H_