check that the 5th and 6th bit in the long header first byte are unset

This commit is contained in:
Marten Seemann 2018-11-26 22:28:10 +07:00
parent 2add1d2fea
commit cce71d84a1
2 changed files with 24 additions and 6 deletions

View file

@ -3,6 +3,7 @@ package wire
import (
"bytes"
"crypto/rand"
"errors"
"fmt"
"io"
@ -40,6 +41,9 @@ func (h *ExtendedHeader) parse(b *bytes.Reader, v protocol.VersionNumber) (*Exte
}
func (h *ExtendedHeader) parseLongHeader(b *bytes.Reader, v protocol.VersionNumber) (*ExtendedHeader, error) {
if h.typeByte&0xc != 0 {
return nil, errors.New("5th and 6th bit must be 0")
}
if err := h.readPacketNumber(b); err != nil {
return nil, err
}