| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_QUIC_CRYPTO_CRYPTO_PROTOCOL_H_ | 5 #ifndef NET_QUIC_CRYPTO_CRYPTO_PROTOCOL_H_ |
| 6 #define NET_QUIC_CRYPTO_CRYPTO_PROTOCOL_H_ | 6 #define NET_QUIC_CRYPTO_CRYPTO_PROTOCOL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 const QuicTag k5RTO = TAG('5', 'R', 'T', 'O'); // Close connection on 5 RTOs | 95 const QuicTag k5RTO = TAG('5', 'R', 'T', 'O'); // Close connection on 5 RTOs |
| 96 | 96 |
| 97 // Optional support of truncated Connection IDs. If sent by a peer, the value | 97 // Optional support of truncated Connection IDs. If sent by a peer, the value |
| 98 // is the minimum number of bytes allowed for the connection ID sent to the | 98 // is the minimum number of bytes allowed for the connection ID sent to the |
| 99 // peer. | 99 // peer. |
| 100 const QuicTag kTCID = TAG('T', 'C', 'I', 'D'); // Connection ID truncation. | 100 const QuicTag kTCID = TAG('T', 'C', 'I', 'D'); // Connection ID truncation. |
| 101 | 101 |
| 102 // Multipath option. | 102 // Multipath option. |
| 103 const QuicTag kMPTH = TAG('M', 'P', 'T', 'H'); // Enable multipath. | 103 const QuicTag kMPTH = TAG('M', 'P', 'T', 'H'); // Enable multipath. |
| 104 | 104 |
| 105 const QuicTag kNCMR = TAG('N', 'C', 'M', 'R'); // Do not attempt connection |
| 106 // migration. |
| 107 |
| 105 // Enable bandwidth resumption experiment. | 108 // Enable bandwidth resumption experiment. |
| 106 const QuicTag kBWRE = TAG('B', 'W', 'R', 'E'); // Bandwidth resumption. | 109 const QuicTag kBWRE = TAG('B', 'W', 'R', 'E'); // Bandwidth resumption. |
| 107 const QuicTag kBWMX = TAG('B', 'W', 'M', 'X'); // Max bandwidth resumption. | 110 const QuicTag kBWMX = TAG('B', 'W', 'M', 'X'); // Max bandwidth resumption. |
| 108 const QuicTag kBWRS = TAG('B', 'W', 'R', 'S'); // Server bandwidth resumption. | 111 const QuicTag kBWRS = TAG('B', 'W', 'R', 'S'); // Server bandwidth resumption. |
| 109 | 112 |
| 110 // Enable path MTU discovery experiment. | 113 // Enable path MTU discovery experiment. |
| 111 const QuicTag kMTUH = TAG('M', 'T', 'U', 'H'); // High-target MTU discovery. | 114 const QuicTag kMTUH = TAG('M', 'T', 'U', 'H'); // High-target MTU discovery. |
| 112 const QuicTag kMTUL = TAG('M', 'T', 'U', 'L'); // Low-target MTU discovery. | 115 const QuicTag kMTUL = TAG('M', 'T', 'U', 'L'); // Low-target MTU discovery. |
| 113 | 116 |
| 114 // Proof types (i.e. certificate types) | 117 // Proof types (i.e. certificate types) |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 // amplification factor of any mirror DoS attack. | 223 // amplification factor of any mirror DoS attack. |
| 221 // | 224 // |
| 222 // A client may pad an inchoate client hello to a size larger than | 225 // A client may pad an inchoate client hello to a size larger than |
| 223 // kClientHelloMinimumSize to make it more likely to receive a complete | 226 // kClientHelloMinimumSize to make it more likely to receive a complete |
| 224 // rejection message. | 227 // rejection message. |
| 225 const size_t kClientHelloMinimumSize = 1024; | 228 const size_t kClientHelloMinimumSize = 1024; |
| 226 | 229 |
| 227 } // namespace net | 230 } // namespace net |
| 228 | 231 |
| 229 #endif // NET_QUIC_CRYPTO_CRYPTO_PROTOCOL_H_ | 232 #endif // NET_QUIC_CRYPTO_CRYPTO_PROTOCOL_H_ |
| OLD | NEW |