Skip to content

Commit

Permalink
Merge pull request #20 from tcfw/draft-ietf-quic-qpack-19
Browse files Browse the repository at this point in the history
fix static table entry 80
  • Loading branch information
marten-seemann authored Oct 29, 2020
2 parents f1218f6 + a5a3c2c commit 3e91963
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions static_table.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ var staticTableEntries = [...]HeaderField{
{Name: "access-control-allow-methods", Value: "get, post, options"},
{Name: "access-control-allow-methods", Value: "options"},
{Name: "access-control-expose-headers", Value: "content-length"},
{Name: "access-control-expose-headers", Value: "content-type"},
{Name: "access-control-request-headers", Value: "content-type"},
{Name: "access-control-request-method", Value: "get"},
{Name: "access-control-request-method", Value: "post"},
{Name: "alt-svc", Value: "clear"},
Expand Down Expand Up @@ -215,7 +215,9 @@ var encoderMap = map[string]indexAndValues{
"options": 78}},
"access-control-expose-headers": {79, map[string]uint8{
"content-length": 79,
"content-type": 80}},
}},
"access-control-request-headers": {80, map[string]uint8{
"content-type": 80}},
"access-control-request-method": {81, map[string]uint8{
"get": 81,
"post": 82}},
Expand Down

0 comments on commit 3e91963

Please sign in to comment.