| 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_QUIC_PROTOCOL_H_ | 5 #ifndef NET_QUIC_QUIC_PROTOCOL_H_ |
| 6 #define NET_QUIC_QUIC_PROTOCOL_H_ | 6 #define NET_QUIC_QUIC_PROTOCOL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <limits> | 9 #include <limits> |
| 10 #include <list> | 10 #include <list> |
| (...skipping 1081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1092 size_t nack_count; | 1092 size_t nack_count; |
| 1093 // Reason why this packet was transmitted. | 1093 // Reason why this packet was transmitted. |
| 1094 TransmissionType transmission_type; | 1094 TransmissionType transmission_type; |
| 1095 // Stores the sequence numbers of all transmissions of this packet. | 1095 // Stores the sequence numbers of all transmissions of this packet. |
| 1096 // Must always be nullptr or have multiple elements. | 1096 // Must always be nullptr or have multiple elements. |
| 1097 SequenceNumberList* all_transmissions; | 1097 SequenceNumberList* all_transmissions; |
| 1098 // In flight packets have not been abandoned or lost. | 1098 // In flight packets have not been abandoned or lost. |
| 1099 bool in_flight; | 1099 bool in_flight; |
| 1100 // True if the packet can never be acked, so it can be removed. | 1100 // True if the packet can never be acked, so it can be removed. |
| 1101 bool is_unackable; | 1101 bool is_unackable; |
| 1102 // True if the packet is an FEC packet. |
| 1103 bool is_fec_packet; |
| 1102 }; | 1104 }; |
| 1103 | 1105 |
| 1104 } // namespace net | 1106 } // namespace net |
| 1105 | 1107 |
| 1106 #endif // NET_QUIC_QUIC_PROTOCOL_H_ | 1108 #endif // NET_QUIC_QUIC_PROTOCOL_H_ |
| OLD | NEW |