Update deps

This commit is contained in:
Frank Denis 2024-09-10 23:28:24 +02:00
parent 7447fc4a0e
commit f8293f56a9
57 changed files with 16943 additions and 4295 deletions

View file

@ -196,9 +196,13 @@ func (d *Decoder) parseIndexedHeaderField() error {
func (d *Decoder) parseLiteralHeaderField() error {
buf := d.buf
if buf[0]&0x20 > 0 || buf[0]&0x10 == 0 {
if buf[0]&0x10 == 0 {
return errNoDynamicTable
}
// We don't need to check the value of the N-bit here.
// It's only relevant when re-encoding header fields,
// and determines whether the header field can be added to the dynamic table.
// Since we don't support the dynamic table, we can ignore it.
index, buf, err := readVarInt(4, buf)
if err != nil {
return err