return error empty StreamFrames that don't have the FinBit set

This commit is contained in:
Marten Seemann 2016-05-22 12:55:21 +07:00
parent 68f450d549
commit 33de224ce0
2 changed files with 21 additions and 0 deletions

View file

@ -6,6 +6,7 @@ import (
"io/ioutil"
"github.com/lucas-clemente/quic-go/protocol"
"github.com/lucas-clemente/quic-go/qerr"
"github.com/lucas-clemente/quic-go/utils"
)
@ -74,6 +75,10 @@ func ParseStreamFrame(r *bytes.Reader) (*StreamFrame, error) {
}
}
if !frame.FinBit && len(frame.Data) == 0 {
return nil, qerr.EmptyStreamFrameNoFin
}
return frame, nil
}