Chromium Code Reviews| Index: net/data/http/http.dict |
| diff --git a/net/data/http/http.dict b/net/data/http/http.dict |
| index 20a849685c52661a8f9937f067ae61017e6d677d..2e750cb8fbb8daaf3f0bac34a260c5e8cfe6c105 100644 |
| --- a/net/data/http/http.dict |
| +++ b/net/data/http/http.dict |
| @@ -21,6 +21,7 @@ |
| "=" |
| "," |
| "\"" |
| +"-" |
| # Status line components |
| "HTTP" |
| @@ -54,25 +55,109 @@ |
| # Proxy authentication headers. Note that fuzzers don't support NTLM or |
| # negotiate. |
| -"WWW-Authenticate" |
| -"Proxy-Authenticate" |
| +"WWW-Authenticate:" |
| +"Proxy-Authenticate:" |
| "Basic" |
| "Digest" |
| "realm" |
| "nonce" |
| -"Connection" |
| -"Proxy-Connection" |
| +"Connection:" |
| +"Proxy-Connection:" |
| "Keep-Alive" |
| "Close" |
| +"Upgrade" |
| "\x0AConnection: Keep-Alive" |
| "\x0AConnection: Close" |
| "\x0AProxy-Connection: Keep-Alive" |
| "\x0AProxy-Connection: Close" |
| -"Content-Length" |
| -"Transfer-Encoding" |
| +"Content-Length:" |
| +"Transfer-Encoding:" |
| "chunked" |
| "\x0AContent-Length: 0" |
| "\x0AContent-Length: 500" |
| "\x0ATransfer-Encoding: chunked\x0A\x0A5\x0A12345\x0A0\x0A\x0A" |
| + |
| +"Location:" |
| +"\x0ALocation: http://foo/" |
| +"\x0ALocation: http://bar/" |
| +"\x0ALocation: https://foo/" |
| +"\x0ALocation: https://bar/" |
| + |
| +"Accept-Ranges:" |
| +"bytes" |
| +"\x0AAccept-Ranges: bytes" |
| + |
| +"Content-Range:" |
| + |
| +"Age:" |
| +"\x0AAge: 0" |
| +"\x0AAge: 3153600000" |
|
mmenke
2016/04/27 19:55:32
This is 100 years. Figure that reduces variations
|
| + |
| +"Cache-Control:" |
| +"max-age" |
| +"no-cache" |
| +"no-store" |
| +"must-revalidate" |
| +"\x0ACache-Control: max-age=3153600000" |
| +"\x0ACache-Control: max-age=0" |
| +"\x0ACache-Control: no-cache" |
| +"\x0ACache-Control: no-store" |
| +"\x0ACache-Control: must-revalidate" |
|
mmenke
2016/04/27 19:55:32
None of my runs remotely compares to what the test
|
| + |
| +"Content-Disposition:" |
| +"attachment" |
| +"filename" |
| + |
| +"Content-Encoding:" |
| +"gzip" |
| +"deflate" |
| +"sdch" |
| +"br" |
| +"\x0AContent-Encoding: gzip" |
| +"\x0AContent-Encoding: deflate" |
| +"\x0AContent-Encoding: sdch" |
| +"\x0AContent-Encoding: br" |
| + |
| +"Date:" |
| +"Fri, 01 Apr, 2050 14:14:14 GMT" |
| +"Mon, 28 Mar, 2016 04:04:04 GMT" |
| +"\x0ADate: Fri, 01 Apr, 2050 14:14:14 GMT" |
| +"\x0ADate: Mon, 28 Mar, 2016 04:04:04 GMT" |
| + |
| +"Last-Modified:" |
| +"\x0ALast-Modified: Fri, 01 Apr, 2050 14:14:14 GMT" |
| +"\x0ALast-Modified: Mon, 28 Mar, 2016 04:04:04 GMT" |
| + |
| +"Expires:" |
| +"\x0AExpires: Fri, 01 Apr, 2050 14:14:14 GMT" |
| +"\x0AExpires: Mon, 28 Mar, 2016 04:04:04 GMT" |
| + |
| +"Set-Cookie:" |
| +"Expires" |
| +"Max-Age" |
| +"Domain" |
| +"Path" |
| +"Secure" |
| +"HttpOnly" |
| +"Priority" |
| +"Low" |
| +"Medium" |
| +"High" |
| +"SameSite" |
| +"Strict" |
| +"Lax" |
| +"\x0ASet-Cookie: foo=bar" |
| +"\x0ASet-Cookie: foo2=bar2;HttpOnly;Priority=Low;SameSite=Strict;Path=/" |
| +"\x0ASet-Cookie: foo=chicken;SameSite=Lax" |
| + |
| +"Strict-Transport-Security:" |
| +"includeSubDomains" |
| + |
| +"Vary:" |
| +"\x0AVary: Cookie" |
| +"\x0AVary: Age" |
| + |
| +"ETag:" |
| +"\x0AETag: jumboshrimp" |