only queue packets for decryption if the opener is not yet available

This commit is contained in:
Marten Seemann 2018-12-20 15:17:18 +06:30
parent 605846cfd8
commit d6c304610d
5 changed files with 59 additions and 40 deletions

View file

@ -61,7 +61,7 @@ func (u *packetUnpacker) Unpack(hdr *wire.Header, data []byte) (*unpackedPacket,
}
opener, err := u.cs.GetOpener(encLevel)
if err != nil {
return nil, qerr.Error(qerr.DecryptionFailure, err.Error())
return nil, err
}
hdrLen := int(hdr.ParsedLen())
// The packet number can be up to 4 bytes long, but we won't know the length until we decrypt it.