ackhandler: reduce allocations for tracking sent packets (#4602)

This commit is contained in:
Marten Seemann
2024-07-31 16:37:05 -07:00
committed by GitHub
parent 42f04d4e02
commit 047cc90f42
3 changed files with 13 additions and 8 deletions

View File

@@ -42,7 +42,7 @@ var _ = Describe("SentPacketHistory", func() {
}
BeforeEach(func() {
hist = newSentPacketHistory()
hist = newSentPacketHistory(true)
})
It("saves sent packets", func() {