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 smoltcp, the Kerla's TCP/IP implementation, there're some O(|# of sockets|) loops and it would lead to a scalability issue in the future:
O(|# of sockets|)
https://github.com/smoltcp-rs/smoltcp/blob/8e6fc7fec85188a783ed80a25ee2159201aa74e8/src/iface/interface.rs#L2019
The priority is not that high, but it might be a good time to write our own TCP/IP protocol stack. I'd avoid to do so though.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In smoltcp, the Kerla's TCP/IP implementation, there're some
O(|# of sockets|)
loops and it would lead to a scalability issue in the future:https://github.com/smoltcp-rs/smoltcp/blob/8e6fc7fec85188a783ed80a25ee2159201aa74e8/src/iface/interface.rs#L2019
The priority is not that high, but it might be a good time to write our own TCP/IP protocol stack. I'd avoid to do so though.
The text was updated successfully, but these errors were encountered: