-
Notifications
You must be signed in to change notification settings - Fork 735
New issue
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
Linux: Support TCP_FASTOPEN #638
Comments
You can use fast open right now w/o mio by managing this state yourself. The goal of Mio is to stay minimal. Could you explain why you think Mio should apply this change? |
Well, the |
What's your opinion? @carllerche |
Maybe this should be experimented with first out of crate. I don't think anything in mio/ tokio prevents a |
Related to #268 |
Closing due to inactivity. |
TCP_FASTOPEN
requires to replaceread
andwrite
syscalls tosendto
andrecvfrom
.I propose to modify the
TcpStream
andTcpListener
insys::unix
like this:The text was updated successfully, but these errors were encountered: