mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 13:27:39 +03:00
Release write buf after error
This commit is contained in:
parent
c801a9ea57
commit
19c6a2b731
15 changed files with 78 additions and 95 deletions
|
@ -40,8 +40,8 @@ async fn main() -> io::Result<()> {
|
|||
println!("New client is connected");
|
||||
|
||||
io.send(
|
||||
&codec::BytesCodec,
|
||||
ntex_bytes::Bytes::from_static(b"Welcome!\n"),
|
||||
&codec::BytesCodec,
|
||||
)
|
||||
.await
|
||||
.map_err(Either::into_inner)?;
|
||||
|
@ -50,7 +50,7 @@ async fn main() -> io::Result<()> {
|
|||
match io.recv(&codec::BytesCodec).await {
|
||||
Ok(Some(msg)) => {
|
||||
println!("Got message: {:?}", msg);
|
||||
io.send(&codec::BytesCodec, msg.freeze())
|
||||
io.send(msg.freeze(), &codec::BytesCodec)
|
||||
.await
|
||||
.map_err(Either::into_inner)?;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue