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

Unified Diff: net/tools/quic/test_tools/mock_quic_time_wait_list_manager.h

Issue 1424653008: Make QUIC stateless rejects work in the face of packet loss by storing the SREJ packet(s) in the Qu… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@106432163
Patch Set: Created 5 years, 1 month 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/tools/quic/quic_time_wait_list_manager_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/test_tools/mock_quic_time_wait_list_manager.h
diff --git a/net/tools/quic/test_tools/mock_quic_time_wait_list_manager.h b/net/tools/quic/test_tools/mock_quic_time_wait_list_manager.h
index 56b2880eba42c93ec3d0bf7184d28da80407e78d..116fd7e30c98515f03c38f3000027dcf9e1dff6d 100644
--- a/net/tools/quic/test_tools/mock_quic_time_wait_list_manager.h
+++ b/net/tools/quic/test_tools/mock_quic_time_wait_list_manager.h
@@ -25,15 +25,16 @@ class MockTimeWaitListManager : public QuicTimeWaitListManager {
void(QuicConnectionId connection_id,
QuicVersion version,
bool connection_rejected_statelessly,
- QuicEncryptedPacket* close_packet));
+ std::vector<QuicEncryptedPacket*>* termination_packets));
void QuicTimeWaitListManager_AddConnectionIdToTimeWait(
QuicConnectionId connection_id,
QuicVersion version,
bool connection_rejected_statelessly,
- QuicEncryptedPacket* close_packet) {
+ std::vector<QuicEncryptedPacket*>* termination_packets) {
QuicTimeWaitListManager::AddConnectionIdToTimeWait(
- connection_id, version, connection_rejected_statelessly, close_packet);
+ connection_id, version, connection_rejected_statelessly,
+ termination_packets);
}
MOCK_METHOD5(ProcessPacket,
« no previous file with comments | « net/tools/quic/quic_time_wait_list_manager_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698