fix logging of locally initiated key updates

This commit is contained in:
Marten Seemann 2020-09-09 16:16:00 +07:00
parent e0824e3163
commit ade2882ef4
2 changed files with 21 additions and 11 deletions

View file

@ -242,10 +242,11 @@ func (a *updatableAEAD) shouldInitiateKeyUpdate() bool {
func (a *updatableAEAD) KeyPhase() protocol.KeyPhaseBit {
if a.shouldInitiateKeyUpdate() {
a.rollKeys(time.Now())
a.logger.Debugf("Initiating key update to key phase %s", a.keyPhase)
if a.tracer != nil {
a.tracer.UpdatedKey(a.keyPhase, false)
}
a.rollKeys(time.Now())
}
return a.keyPhase.Bit()
}