mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
changes: - Just follow the new TE specification (https://datatracker.ietf.org/doc/html/rfc9112#name-transfer-encoding) here and accept to introduce a breaking change. - gandle multiple TE on one line ** breaking changes ** : invalid headers and position will now return an error.
11 lines
135 B
HTTP
11 lines
135 B
HTTP
POST /chunked HTTP/1.1\r\n
|
|
Transfer-Encoding: gzip\r\n
|
|
Transfer-Encoding: chunked\r\n
|
|
\r\n
|
|
5\r\n
|
|
hello\r\n
|
|
6\r\n
|
|
world\r\n
|
|
0\r\n
|
|
\r\n
|