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

Unified Diff: net/quic/quic_unacked_packet_map.cc

Issue 1013583002: Make the SentPacketManager remove pending retransmissions for reset (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Replace_CID_with_connection_id_88463135
Patch Set: Created 5 years, 9 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_unacked_packet_map.h ('k') | net/quic/quic_unacked_packet_map_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_unacked_packet_map.cc
diff --git a/net/quic/quic_unacked_packet_map.cc b/net/quic/quic_unacked_packet_map.cc
index 0ada9f62c521c8c5119eb8e6b082db2cb3a33058..756214c13e042e21c6b45bb9fa040bfda672a19b 100644
--- a/net/quic/quic_unacked_packet_map.cc
+++ b/net/quic/quic_unacked_packet_map.cc
@@ -300,7 +300,8 @@ void QuicUnackedPacketMap::RemoveFromInFlight(
}
}
-void QuicUnackedPacketMap::StopRetransmissionForStream(QuicStreamId stream_id) {
+void QuicUnackedPacketMap::CancelRetransmissionsForStream(
+ QuicStreamId stream_id) {
if (stream_id == kCryptoStreamId || stream_id == kHeadersStreamId) {
LOG(DFATAL) << "Special streams must always retransmit data: " << stream_id;
return;
« no previous file with comments | « net/quic/quic_unacked_packet_map.h ('k') | net/quic/quic_unacked_packet_map_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698