1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 17:59:35 +00:00

Do not enable chunked encoding for HTTP/1.0

This commit is contained in:
Nikolay Kim 2018-01-13 12:46:43 -08:00
parent b805d87ee7
commit 305666067e
2 changed files with 13 additions and 9 deletions

View file

@ -2,7 +2,9 @@
## 0.3.1 (2018-01-xx)
*
* Fix directory entry path #47
* Do not enable chunked encoding for HTTP/1.0
## 0.3.0 (2018-01-12)

View file

@ -483,14 +483,16 @@ impl PayloadEncoder {
}
} else {
// Enable transfer encoding
resp.headers_mut().remove(CONTENT_LENGTH);
if version == Version::HTTP_2 {
resp.headers_mut().remove(TRANSFER_ENCODING);
TransferEncoding::eof(buf)
} else {
resp.headers_mut().insert(
TRANSFER_ENCODING, HeaderValue::from_static("chunked"));
TransferEncoding::chunked(buf)
match version {
Version::HTTP_11 => {
resp.headers_mut().insert(
TRANSFER_ENCODING, HeaderValue::from_static("chunked"));
TransferEncoding::chunked(buf)
},
_ => {
resp.headers_mut().remove(TRANSFER_ENCODING);
TransferEncoding::eof(buf)
}
}
}
}