| Index: net/tools/quic/quic_dispatcher_test.cc
|
| diff --git a/net/tools/quic/quic_dispatcher_test.cc b/net/tools/quic/quic_dispatcher_test.cc
|
| index 0e3fdffaaadea988138676aabd0179d320eafdec..129f7402b600c827290f7ff127b84b7f40cb88a4 100644
|
| --- a/net/tools/quic/quic_dispatcher_test.cc
|
| +++ b/net/tools/quic/quic_dispatcher_test.cc
|
| @@ -269,7 +269,7 @@ TEST_F(QuicDispatcherTest, TimeWaitListManager) {
|
| // wait list manager.
|
| EXPECT_CALL(*time_wait_list_manager_,
|
| ProcessPacket(_, _, connection_id, _, _)).Times(1);
|
| - EXPECT_CALL(*time_wait_list_manager_, AddConnectionIdToTimeWait(_, _, _))
|
| + EXPECT_CALL(*time_wait_list_manager_, AddConnectionIdToTimeWait(_, _, _, _))
|
| .Times(0);
|
| ProcessPacket(client_address, connection_id, true, "foo");
|
| }
|
| @@ -284,7 +284,7 @@ TEST_F(QuicDispatcherTest, NoVersionPacketToTimeWaitListManager) {
|
| EXPECT_CALL(dispatcher_, CreateQuicSession(_, _, _)).Times(0);
|
| EXPECT_CALL(*time_wait_list_manager_,
|
| ProcessPacket(_, _, connection_id, _, _)).Times(1);
|
| - EXPECT_CALL(*time_wait_list_manager_, AddConnectionIdToTimeWait(_, _, _))
|
| + EXPECT_CALL(*time_wait_list_manager_, AddConnectionIdToTimeWait(_, _, _, _))
|
| .Times(1);
|
| ProcessPacket(client_address, connection_id, false, "data");
|
| }
|
| @@ -298,7 +298,7 @@ TEST_F(QuicDispatcherTest, ProcessPacketWithZeroPort) {
|
| // dispatcher_ should drop this packet.
|
| EXPECT_CALL(dispatcher_, CreateQuicSession(1, _, client_address)).Times(0);
|
| EXPECT_CALL(*time_wait_list_manager_, ProcessPacket(_, _, _, _, _)).Times(0);
|
| - EXPECT_CALL(*time_wait_list_manager_, AddConnectionIdToTimeWait(_, _, _))
|
| + EXPECT_CALL(*time_wait_list_manager_, AddConnectionIdToTimeWait(_, _, _, _))
|
| .Times(0);
|
| ProcessPacket(client_address, 1, true, "foo");
|
| }
|
| @@ -330,7 +330,7 @@ TEST_F(QuicDispatcherTest, TooBigSeqNoPacketToTimeWaitListManager) {
|
| EXPECT_CALL(dispatcher_, CreateQuicSession(_, _, _)).Times(0);
|
| EXPECT_CALL(*time_wait_list_manager_,
|
| ProcessPacket(_, _, connection_id, _, _)).Times(1);
|
| - EXPECT_CALL(*time_wait_list_manager_, AddConnectionIdToTimeWait(_, _, _))
|
| + EXPECT_CALL(*time_wait_list_manager_, AddConnectionIdToTimeWait(_, _, _, _))
|
| .Times(1);
|
| // A packet whose sequence number is one to large to be allowed to start a
|
| // connection.
|
| @@ -358,7 +358,7 @@ TEST_P(QuicDispatcherTestStrayPacketConnectionId,
|
| EXPECT_CALL(dispatcher_, CreateQuicSession(_, _, _)).Times(0);
|
| EXPECT_CALL(*time_wait_list_manager_,
|
| ProcessPacket(_, _, connection_id, _, _)).Times(0);
|
| - EXPECT_CALL(*time_wait_list_manager_, AddConnectionIdToTimeWait(_, _, _))
|
| + EXPECT_CALL(*time_wait_list_manager_, AddConnectionIdToTimeWait(_, _, _, _))
|
| .Times(0);
|
| ProcessPacket(client_address, connection_id, true, "data",
|
| connection_id_length, PACKET_6BYTE_SEQUENCE_NUMBER);
|
|
|