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

Unified Diff: net/quic/quic_protocol.cc

Issue 572703003: Minor change to QUIC's retransmission to not link old retransmissions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@merge_75263809
Patch Set: Created 6 years, 3 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
« no previous file with comments | « net/quic/quic_protocol.h ('k') | net/quic/quic_sent_packet_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_protocol.cc
diff --git a/net/quic/quic_protocol.cc b/net/quic/quic_protocol.cc
index 5ebd7377bc5cb42f3250f8068b8ce2ad8d25d501..81e67fb3d983bd1f0b2a7b66200df328a33f7d01 100644
--- a/net/quic/quic_protocol.cc
+++ b/net/quic/quic_protocol.cc
@@ -719,7 +719,8 @@ TransmissionInfo::TransmissionInfo()
nack_count(0),
transmission_type(NOT_RETRANSMISSION),
all_transmissions(NULL),
- in_flight(false) {}
+ in_flight(false),
+ is_unackable(false) {}
TransmissionInfo::TransmissionInfo(
RetransmittableFrames* retransmittable_frames,
@@ -731,7 +732,8 @@ TransmissionInfo::TransmissionInfo(
nack_count(0),
transmission_type(NOT_RETRANSMISSION),
all_transmissions(NULL),
- in_flight(false) {}
+ in_flight(false),
+ is_unackable(false) {}
TransmissionInfo::TransmissionInfo(
RetransmittableFrames* retransmittable_frames,
@@ -745,6 +747,7 @@ TransmissionInfo::TransmissionInfo(
nack_count(0),
transmission_type(transmission_type),
all_transmissions(all_transmissions),
- in_flight(false) {}
+ in_flight(false),
+ is_unackable(false) {}
} // namespace net
« no previous file with comments | « net/quic/quic_protocol.h ('k') | net/quic/quic_sent_packet_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698