Release write buf after error

This commit is contained in:
Nikolay Kim 2021-12-26 19:24:13 +06:00
parent c801a9ea57
commit 19c6a2b731
15 changed files with 78 additions and 95 deletions

View file

@ -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)?;
}