ackhandler: refactor ACK queueing logic (#4225)

Once an ACK has been queued, there's no need to check futher conditions that
would lead to queueing of an ACK.
This commit is contained in:
Marten Seemann 2024-01-04 09:39:09 +07:00 committed by GitHub
parent 8cad3d2ea5
commit 54d6f7dc51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 32 deletions

View file

@ -1270,7 +1270,6 @@ var _ = Describe("Connection", func() {
sph.EXPECT().ECNMode(true).AnyTimes()
runConn()
packer.EXPECT().AppendPacket(gomock.Any(), gomock.Any(), conn.version).Return(shortHeaderPacket{}, errNothingToPack).AnyTimes()
conn.receivedPacketHandler.ReceivedPacket(0x035e, protocol.ECNNon, protocol.Encryption1RTT, time.Now(), true)
conn.scheduleSending()
time.Sleep(50 * time.Millisecond) // make sure there are no calls to mconn.Write()
})