remove unneeded check in receivedPacketHandler.IsPotentiallyDuplicate

The application data packet number space is never dropped.
This commit is contained in:
Marten Seemann 2021-01-11 16:56:34 +08:00
parent d1c5297c0b
commit c5b610f6a5

View file

@ -130,9 +130,7 @@ func (h *receivedPacketHandler) IsPotentiallyDuplicate(pn protocol.PacketNumber,
return h.handshakePackets.IsPotentiallyDuplicate(pn)
}
case protocol.Encryption0RTT, protocol.Encryption1RTT:
if h.appDataPackets != nil {
return h.appDataPackets.IsPotentiallyDuplicate(pn)
}
return h.appDataPackets.IsPotentiallyDuplicate(pn)
}
panic("unexpected encryption level")
}