Closed abel-von closed 4 years ago
the copying thread is like below:
let (mut rback, mut wback) = serve_stream.split();
let (mut rfront, mut wfront) = tokio::io::split(agent_stream);
let client_to_server = async {
let r = tokio::io::copy(&mut rfront, &mut wback)
.await
.map_err(io_error!(e, "failed to copy from client to server"));
wback
.shutdown()
.await
.map_err(io_error!(e, "failed to shutdown proxy socket"))?;
r
};
let server_to_client = async {
let r = tokio::io::copy(&mut rback, &mut wfront)
.await
.map_err(io_error!(e, "failed to copy from server to client"));
wfront
.shutdown()
.await
.map_err(io_error!(e, "failed to shutdown agent socket"))?;
r
};
futures::try_join!(client_to_server, server_to_client)
.map_err(|e| {
let msg = format!("failed to copy stream: {}", e);
error!("{}", msg.as_str());
Other(msg)
})
After my review, this is a missing state machine transition, we didn't have this scenario before so didn't find it, thanks!
I'll fix it and release it as soon as I can, but if you're in a hurry, you can use the commit that PR fixes afterward first.
@abel-von Ok, now, you can try #260 pr
Hi, I'm using tokio-yamux in my project, and this tokio-yamux helps me a lot, thanks for this excellent lib.
I have encountered a problem.
I opened some streams, and copy the io from my served connections to those stream and also from those streams to my served connections. I have tested an exceptional use case that when I close the server side of yamux, I expect that the copying threads should stop. but the reality is that it is still running.
So my question is: How to stop the Read or Write of the yamux stream, when the underlying connection is closed. I tried to add control.close() in the "next call thread" but it is still no use.
Is it something I ignored? or are there any other suggestion for this use case?