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

Unified Diff: net/quic/quic_ack_notifier.cc

Issue 789103013: Land Recent QUIC Changes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 | « no previous file | net/quic/quic_ack_notifier_manager.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_ack_notifier.cc
diff --git a/net/quic/quic_ack_notifier.cc b/net/quic/quic_ack_notifier.cc
index 2a9b585acdcb485ccddfc4901dedc6115d1b2e69..55e829f9fa6b608e282b1976a944ba3c72a11015 100644
--- a/net/quic/quic_ack_notifier.cc
+++ b/net/quic/quic_ack_notifier.cc
@@ -44,6 +44,8 @@ void QuicAckNotifier::AddSequenceNumber(
PacketInfo(packet_payload_size)));
++original_packet_count_;
original_byte_count_ += packet_payload_size;
+
+ DVLOG(1) << "AckNotifier waiting for packet: " << sequence_number;
}
bool QuicAckNotifier::OnAck(QuicPacketSequenceNumber sequence_number,
@@ -79,6 +81,9 @@ void QuicAckNotifier::UpdateSequenceNumber(
++retransmitted_packet_count_;
retransmitted_byte_count_ += packet_info.packet_payload_size;
sequence_numbers_.insert(make_pair(new_sequence_number, packet_info));
+
+ DVLOG(1) << "AckNotifier waiting for packet: " << new_sequence_number
+ << " (retransmitted " << old_sequence_number << ").";
}
}; // namespace net
« no previous file with comments | « no previous file | net/quic/quic_ack_notifier_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698