only fire the handshake alarm if handshake packets are outstanding

This commit is contained in:
Marten Seemann 2018-06-30 14:30:38 +07:00
parent 3f9212b5f7
commit 95ef15c6b1

View file

@ -376,7 +376,7 @@ func (h *sentPacketHandler) OnAlarm() error {
now := time.Now()
var err error
if !h.handshakeComplete {
if h.packetHistory.HasOutstandingHandshakePackets() {
if h.logger.Debug() {
h.logger.Debugf("Loss detection alarm fired in handshake mode")
}