mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 04:37:36 +03:00
add a logging event for dropping 1-RTT keys
This commit is contained in:
parent
9e1d65f4c9
commit
dbaacd49bd
9 changed files with 77 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue