-
Notifications
You must be signed in to change notification settings - Fork 1
136 integrate smoltcp stack #154
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
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…dling and permission checks
… directory and file operations
…undant references
… directory and file operations
… method signature
…ross authentication module
… Protocol, and SocketDriver traits
…for IP address handling
…work interface management
…ove memory display
Closed
Codecov Report❌ Patch coverage is 📢 Thoughts on this report? Let us know! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new network stack implementation for the standard drivers, replacing the previous
embassy-netdependency withsmoltcp, and adds support for TUN/TAP network interfaces. It also refactors several modules to streamline initialization and device mounting, and updates error handling for improved consistency. The most important changes are grouped below:Network stack migration and TUN/TAP support:
embassy-netwithsmoltcpinCargo.tomland updated dependencies accordingly. [1] [2]tuntapmodule indrivers/std/src/tuntap, implementing TUN/TAP network interface setup and management, including system commands for interface creation and configuration. [1] [2]Cargo.tomlto include the newnetworkandsmoltcpcrates. [1] [2]Refactoring and initialization improvements:
examples/native/src/main.rsto remove the unusedNoneparameter and streamline the device mounting process. [1] [2]examples/native/src/main.rsfor better clarity and modularity.Module and error handling cleanup:
network/error.rsandnetwork/resolver.rsmodules, and updateddrivers/std/src/network/mod.rsto reflect these changes. [1] [2] [3]drivers/std/src/io.rsto useInvalidParameterinstead ofInvalidPathforInvalidInputerrors, improving consistency.Defaultimplementation forMemoryManagerindrivers/std/src/memory.rsfor easier instantiation.Minor code improvements:
drivers/shared/src/devices/hash.rsby replacingok_or_elsewithok_or. [1] [2] [3] [4]file_manager.rs.These changes collectively modernize the network support, improve initialization routines, and clean up the codebase for better maintainability. code from VirtualFileSystem**