add a logging event for dropping 1-RTT keys

This commit is contained in:
Marten Seemann 2020-09-09 14:55:46 +07:00
parent 9e1d65f4c9
commit dbaacd49bd
9 changed files with 77 additions and 1 deletions

View file

@ -213,6 +213,12 @@ var _ = Describe("Tracing", func() {
tracer.DroppedEncryptionLevel(EncryptionHandshake)
})
It("traces the DroppedKey event", func() {
tr1.EXPECT().DroppedKey(KeyPhase(123))
tr2.EXPECT().DroppedKey(KeyPhase(123))
tracer.DroppedKey(123)
})
It("traces the SetLossTimer event", func() {
now := time.Now()
tr1.EXPECT().SetLossTimer(TimerTypePTO, EncryptionHandshake, now)