We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In case the FIN flag is received in a WindowUpdate frame the code does not wake up readers which can thus miss the stream EOF.
In connection::Active::on_window_update() readers are not woken up after setting the state to RecvClosed, thus potentially missing the EOF entirely.
connection::Active::on_window_update()
RecvClosed
The text was updated successfully, but these errors were encountered:
chore(Cargo.lock): upgrade yamux to 0.13.3
yamux
0a43aec
This version has the fix for the missed EOF issue triggered by Golang peers. (libp2p/rust-yamux#189)
Successfully merging a pull request may close this issue.
In case the FIN flag is received in a WindowUpdate frame the code does not wake up readers which can thus miss the stream EOF.
In
connection::Active::on_window_update()
readers are not woken up after setting the state toRecvClosed
, thus potentially missing the EOF entirely.The text was updated successfully, but these errors were encountered: