fix tight loop in Framed::close() method

This commit is contained in:
Nikolay Kim 2021-09-08 08:34:37 +06:00
parent 0546918deb
commit f5d3034e09
4 changed files with 8 additions and 4 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [0.5.1] - 2021-09-08
* Fix tight loop in Framed::close() method.
## [0.5.0] - 2021-06-27
* Use ntex-bytes stead of bytes

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-codec"
version = "0.5.0"
version = "0.5.1"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Utilities for encoding and decoding frames"
keywords = ["network", "framework", "async", "futures"]
@ -16,7 +16,7 @@ name = "ntex_codec"
path = "src/lib.rs"
[dependencies]
bitflags = "1.2.1"
bitflags = "1.3"
ntex-bytes = "0.1"
ntex-util = "0.1"
log = "0.4"

View file

@ -305,8 +305,8 @@ where
// read until 0 or err
let mut buf = [0u8; 512];
let mut read_buf = tokio::io::ReadBuf::new(&mut buf);
loop {
let mut read_buf = tokio::io::ReadBuf::new(&mut buf);
match ready!(Pin::new(&mut self.io).poll_read(cx, &mut read_buf)) {
Err(_) | Ok(_) if read_buf.filled().is_empty() => {
break;

View file

@ -43,7 +43,7 @@ http-framework = ["h2", "http", "httparse",
"httpdate", "encoding_rs", "mime", "percent-encoding", "serde_json", "serde_urlencoded"]
[dependencies]
ntex-codec = "0.5.0"
ntex-codec = "0.5.1"
ntex-rt = "0.3.1"
ntex-router = "0.5.1"
ntex-service = "0.2.0-b.0"