mirror of
https://github.com/actix/actix-web.git
synced 2024-11-23 01:51:11 +00:00
content-length bug fix (#525)
* content-length bug fix * changes.md is updated * typo
This commit is contained in:
parent
eed377e773
commit
c8505bb53f
2 changed files with 10 additions and 2 deletions
|
@ -19,6 +19,8 @@
|
||||||
|
|
||||||
* Websocket server finished() isn't called if client disconnects #511
|
* Websocket server finished() isn't called if client disconnects #511
|
||||||
|
|
||||||
|
* Responses with the following codes: 100, 101, 102, 204 -- are sent without Content-Length header. #521
|
||||||
|
|
||||||
|
|
||||||
## [0.7.8] - 2018-09-17
|
## [0.7.8] - 2018-09-17
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@ use flate2::write::{GzEncoder, ZlibEncoder};
|
||||||
#[cfg(feature = "flate2")]
|
#[cfg(feature = "flate2")]
|
||||||
use flate2::Compression;
|
use flate2::Compression;
|
||||||
use http::header::{ACCEPT_ENCODING, CONTENT_LENGTH};
|
use http::header::{ACCEPT_ENCODING, CONTENT_LENGTH};
|
||||||
use http::Version;
|
use http::{StatusCode, Version};
|
||||||
|
|
||||||
use super::message::InnerRequest;
|
use super::message::InnerRequest;
|
||||||
use body::{Binary, Body};
|
use body::{Binary, Body};
|
||||||
|
@ -192,7 +192,13 @@ impl Output {
|
||||||
let transfer = match resp.body() {
|
let transfer = match resp.body() {
|
||||||
Body::Empty => {
|
Body::Empty => {
|
||||||
if !info.head {
|
if !info.head {
|
||||||
info.length = ResponseLength::Zero;
|
info.length = match resp.status() {
|
||||||
|
StatusCode::NO_CONTENT
|
||||||
|
| StatusCode::CONTINUE
|
||||||
|
| StatusCode::SWITCHING_PROTOCOLS
|
||||||
|
| StatusCode::PROCESSING => ResponseLength::None,
|
||||||
|
_ => ResponseLength::Zero,
|
||||||
|
};
|
||||||
}
|
}
|
||||||
*self = Output::Empty(buf);
|
*self = Output::Empty(buf);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue