mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Fix potential BorrowMutError
This commit is contained in:
parent
b49a5ed195
commit
a2dd66815d
3 changed files with 17 additions and 7 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [0.1.2] - 2022-01-12
|
||||
|
||||
* Fix potential BorrowMutError
|
||||
|
||||
## [0.1.1] - 2022-01-10
|
||||
|
||||
* Allow to set socket options
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-tokio"
|
||||
version = "0.1.1"
|
||||
version = "0.1.2"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "tokio intergration for ntex framework"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
@ -17,8 +17,8 @@ path = "src/lib.rs"
|
|||
|
||||
[dependencies]
|
||||
ntex-bytes = "0.1.9"
|
||||
ntex-io = "0.1.2"
|
||||
ntex-util = "0.1.8"
|
||||
ntex-io = "0.1.3"
|
||||
ntex-util = "0.1.9"
|
||||
log = "0.4"
|
||||
pin-project-lite = "0.2"
|
||||
tokio = { version = "1", default-features = false, features = ["rt", "net", "sync", "signal"] }
|
||||
|
|
|
@ -92,6 +92,7 @@ impl Future for ReadTask {
|
|||
}
|
||||
Poll::Ready(Err(err)) => {
|
||||
log::trace!("read task failed on io {:?}", err);
|
||||
drop(io);
|
||||
let _ = this.state.release_read_buf(buf, new_bytes);
|
||||
this.state.close(Some(err));
|
||||
return Poll::Ready(());
|
||||
|
@ -99,6 +100,7 @@ impl Future for ReadTask {
|
|||
}
|
||||
}
|
||||
|
||||
drop(io);
|
||||
if new_bytes == 0 && close {
|
||||
this.state.close(None);
|
||||
return Poll::Ready(());
|
||||
|
@ -258,10 +260,11 @@ impl Future for WriteTask {
|
|||
Shutdown::Stopping(ref mut count) => {
|
||||
// read until 0 or err
|
||||
let mut buf = [0u8; 512];
|
||||
let mut io = this.io.borrow_mut();
|
||||
loop {
|
||||
let mut read_buf = ReadBuf::new(&mut buf);
|
||||
match Pin::new(&mut *io).poll_read(cx, &mut read_buf) {
|
||||
match Pin::new(&mut *this.io.borrow_mut())
|
||||
.poll_read(cx, &mut read_buf)
|
||||
{
|
||||
Poll::Ready(Err(_)) | Poll::Ready(Ok(_))
|
||||
if read_buf.filled().is_empty() =>
|
||||
{
|
||||
|
@ -536,6 +539,7 @@ mod unixstream {
|
|||
}
|
||||
Poll::Ready(Err(err)) => {
|
||||
log::trace!("read task failed on io {:?}", err);
|
||||
drop(io);
|
||||
let _ = this.state.release_read_buf(buf, new_bytes);
|
||||
this.state.close(Some(err));
|
||||
return Poll::Ready(());
|
||||
|
@ -543,6 +547,7 @@ mod unixstream {
|
|||
}
|
||||
}
|
||||
|
||||
drop(io);
|
||||
if new_bytes == 0 && close {
|
||||
this.state.close(None);
|
||||
return Poll::Ready(());
|
||||
|
@ -682,10 +687,11 @@ mod unixstream {
|
|||
Shutdown::Stopping(ref mut count) => {
|
||||
// read until 0 or err
|
||||
let mut buf = [0u8; 512];
|
||||
let mut io = this.io.borrow_mut();
|
||||
loop {
|
||||
let mut read_buf = ReadBuf::new(&mut buf);
|
||||
match Pin::new(&mut *io).poll_read(cx, &mut read_buf) {
|
||||
match Pin::new(&mut *this.io.borrow_mut())
|
||||
.poll_read(cx, &mut read_buf)
|
||||
{
|
||||
Poll::Ready(Err(_)) | Poll::Ready(Ok(_))
|
||||
if read_buf.filled().is_empty() =>
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue