Skip to content

Commit

Permalink
update all instances of connAndPing
Browse files Browse the repository at this point in the history
  • Loading branch information
ProjectsByJackHe committed Feb 10, 2025
1 parent a2511c3 commit 2db51dd
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/test/bin/quic_gtest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1881,7 +1881,8 @@ TEST_P(WithSend0RttArgs1, Send0Rtt) {
(uint8_t)GetParam().UseSendBuffer,
(uint8_t)GetParam().UnidirectionalStreams,
0, // ServerInitiatedStreams
0 // FifoScheduling
0, // FifoScheduling
0 // SendUdpToQtipListener
};
ASSERT_TRUE(DriverClient.Run(IOCTL_QUIC_RUN_CONNECT_AND_PING, Params));
} else {
Expand All @@ -1899,7 +1900,8 @@ TEST_P(WithSend0RttArgs1, Send0Rtt) {
GetParam().UseSendBuffer,
GetParam().UnidirectionalStreams,
false, // ServerInitiatedStreams
false); // FifoScheduling
false, // FifoScheduling
false); // SendUdpToQtipListener
}
}

Expand Down Expand Up @@ -1929,7 +1931,8 @@ TEST_P(WithSend0RttArgs2, Reject0Rtt) {
0, // UseSendBuffer
0, // UnidirectionalStreams
0, // ServerInitiatedStreams
0 // FifoScheduling
0, // FifoScheduling
0 // SendUdpToQtipListener
};
ASSERT_TRUE(DriverClient.Run(IOCTL_QUIC_RUN_CONNECT_AND_PING, Params));
} else {
Expand All @@ -1947,7 +1950,8 @@ TEST_P(WithSend0RttArgs2, Reject0Rtt) {
false, // UseSendBuffer
false, // UnidirectionalStreams
false, // ServerInitiatedStreams
false); // FifoScheduling
false, // FifoScheduling
false); // SendUdpToQtipListener
}
}

Expand Down

0 comments on commit 2db51dd

Please sign in to comment.