1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-10-03 16:51:58 +00:00

include content-length to error response

This commit is contained in:
Nikolay Kim 2018-08-07 11:56:39 -07:00
parent 16546a707f
commit 58a079bd10

View file

@ -16,11 +16,12 @@ impl HttpHandlerTask for ServerError {
fn poll_io(&mut self, io: &mut Writer) -> Poll<bool, Error> {
{
let bytes = io.buffer();
//Buffer should have sufficient capacity for status line
//and extra space
// Buffer should have sufficient capacity for status line
// and extra space
bytes.reserve(helpers::STATUS_LINE_BUF_SIZE + 1);
helpers::write_status_line(self.0, self.1.as_u16(), bytes);
}
io.buffer().extend_from_slice(b"\r\ncontent-length: 0\r\n");
io.set_date();
Ok(Async::Ready(true))
}