fix handling of unknown frames in the stream hijacker

This commit is contained in:
Marten Seemann 2022-05-27 17:35:00 +02:00
parent 3088865952
commit 5cb2e8265c
4 changed files with 4 additions and 8 deletions

View file

@ -33,11 +33,10 @@ func parseNextFrame(r io.Reader, unknownFrameHandler unknownFrameHandlerFunc) (f
if err != nil {
return nil, err
}
// If the unknownFrameHandler didn't process the frame, it is our responsibility to skip it.
if hijacked {
return nil, errHijacked
}
continue
// If the unknownFrameHandler didn't process the frame, it is our responsibility to skip it.
}
l, err := quicvarint.Read(qr)
if err != nil {