mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 05:47:40 +03:00
wip
This commit is contained in:
parent
ccafe7a8be
commit
ac7f03fd1b
1 changed files with 8 additions and 8 deletions
|
@ -202,11 +202,11 @@ impl Future for WriteTask {
|
||||||
match this.state.with_buf(|buf| flush_io(&mut *io, buf, cx)) {
|
match this.state.with_buf(|buf| flush_io(&mut *io, buf, cx)) {
|
||||||
Poll::Ready(Ok(())) => {
|
Poll::Ready(Ok(())) => {
|
||||||
let io = this.io.clone();
|
let io = this.io.clone();
|
||||||
|
#[allow(clippy::await_holding_refcell_ref)]
|
||||||
let fut = Box::pin(async move {
|
let fut = Box::pin(async move {
|
||||||
let fut =
|
io.0.borrow()
|
||||||
io.0.borrow()
|
.shutdown(std::net::Shutdown::Write)
|
||||||
.shutdown(std::net::Shutdown::Write);
|
.await;
|
||||||
fut.await
|
|
||||||
});
|
});
|
||||||
*st = Shutdown::Close(fut);
|
*st = Shutdown::Close(fut);
|
||||||
continue;
|
continue;
|
||||||
|
@ -511,11 +511,11 @@ impl Future for UnixWriteTask {
|
||||||
match this.state.with_buf(|buf| flush_io(&mut *io, buf, cx)) {
|
match this.state.with_buf(|buf| flush_io(&mut *io, buf, cx)) {
|
||||||
Poll::Ready(Ok(())) => {
|
Poll::Ready(Ok(())) => {
|
||||||
let io = this.io.clone();
|
let io = this.io.clone();
|
||||||
|
#[allow(clippy::await_holding_refcell_ref)]
|
||||||
let fut = Box::pin(async move {
|
let fut = Box::pin(async move {
|
||||||
let fut =
|
io.0.borrow()
|
||||||
io.0.borrow()
|
.shutdown(std::net::Shutdown::Write)
|
||||||
.shutdown(std::net::Shutdown::Write);
|
.await
|
||||||
fut.await
|
|
||||||
});
|
});
|
||||||
*st = Shutdown::Close(fut);
|
*st = Shutdown::Close(fut);
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue