mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
fix tight loop in Framed::close() method
This commit is contained in:
parent
0546918deb
commit
f5d3034e09
4 changed files with 8 additions and 4 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [0.5.1] - 2021-09-08
|
||||||
|
|
||||||
|
* Fix tight loop in Framed::close() method.
|
||||||
|
|
||||||
## [0.5.0] - 2021-06-27
|
## [0.5.0] - 2021-06-27
|
||||||
|
|
||||||
* Use ntex-bytes stead of bytes
|
* Use ntex-bytes stead of bytes
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-codec"
|
name = "ntex-codec"
|
||||||
version = "0.5.0"
|
version = "0.5.1"
|
||||||
authors = ["ntex contributors <team@ntex.rs>"]
|
authors = ["ntex contributors <team@ntex.rs>"]
|
||||||
description = "Utilities for encoding and decoding frames"
|
description = "Utilities for encoding and decoding frames"
|
||||||
keywords = ["network", "framework", "async", "futures"]
|
keywords = ["network", "framework", "async", "futures"]
|
||||||
|
@ -16,7 +16,7 @@ name = "ntex_codec"
|
||||||
path = "src/lib.rs"
|
path = "src/lib.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitflags = "1.2.1"
|
bitflags = "1.3"
|
||||||
ntex-bytes = "0.1"
|
ntex-bytes = "0.1"
|
||||||
ntex-util = "0.1"
|
ntex-util = "0.1"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
|
|
|
@ -305,8 +305,8 @@ where
|
||||||
|
|
||||||
// read until 0 or err
|
// read until 0 or err
|
||||||
let mut buf = [0u8; 512];
|
let mut buf = [0u8; 512];
|
||||||
let mut read_buf = tokio::io::ReadBuf::new(&mut buf);
|
|
||||||
loop {
|
loop {
|
||||||
|
let mut read_buf = tokio::io::ReadBuf::new(&mut buf);
|
||||||
match ready!(Pin::new(&mut self.io).poll_read(cx, &mut read_buf)) {
|
match ready!(Pin::new(&mut self.io).poll_read(cx, &mut read_buf)) {
|
||||||
Err(_) | Ok(_) if read_buf.filled().is_empty() => {
|
Err(_) | Ok(_) if read_buf.filled().is_empty() => {
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -43,7 +43,7 @@ http-framework = ["h2", "http", "httparse",
|
||||||
"httpdate", "encoding_rs", "mime", "percent-encoding", "serde_json", "serde_urlencoded"]
|
"httpdate", "encoding_rs", "mime", "percent-encoding", "serde_json", "serde_urlencoded"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ntex-codec = "0.5.0"
|
ntex-codec = "0.5.1"
|
||||||
ntex-rt = "0.3.1"
|
ntex-rt = "0.3.1"
|
||||||
ntex-router = "0.5.1"
|
ntex-router = "0.5.1"
|
||||||
ntex-service = "0.2.0-b.0"
|
ntex-service = "0.2.0-b.0"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue