mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-03 20:27:35 +03:00
update qpack to v0.2.0
This commit is contained in:
parent
4d1d05e4bf
commit
fb9f6b36d6
3 changed files with 37 additions and 21 deletions
|
@ -210,7 +210,7 @@ var _ = Describe("Server", func() {
|
|||
})
|
||||
|
||||
It("errors when the client sends a too large header frame", func() {
|
||||
s.Server.MaxHeaderBytes = 42
|
||||
s.Server.MaxHeaderBytes = 20
|
||||
s.Handler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
Fail("Handler should not be called.")
|
||||
})
|
||||
|
@ -274,7 +274,9 @@ var _ = Describe("Server", func() {
|
|||
close(handlerCalled)
|
||||
})
|
||||
|
||||
url := bytes.Repeat([]byte{'a'}, http.DefaultMaxHeaderBytes+1)
|
||||
// use 2*DefaultMaxHeaderBytes here. qpack will compress the requiest,
|
||||
// but the request will still end up larger than DefaultMaxHeaderBytes.
|
||||
url := bytes.Repeat([]byte{'a'}, http.DefaultMaxHeaderBytes*2)
|
||||
req, err := http.NewRequest(http.MethodGet, "https://"+string(url), nil)
|
||||
Expect(err).ToNot(HaveOccurred())
|
||||
setRequest(encodeRequest(req))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue