-
Notifications
You must be signed in to change notification settings - Fork 279
(ethernet_server): Refactor EthernetServer and fix initialization bug #292
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
Open
kaabia
wants to merge
1
commit into
arduino-libraries:master
Choose a base branch
from
kaabia:refactor/server-cleanup-and-optimize
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
(ethernet_server): Refactor EthernetServer and fix initialization bug #292
kaabia
wants to merge
1
commit into
arduino-libraries:master
from
kaabia:refactor/server-cleanup-and-optimize
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
…leanup Reworks the EthernetServer class to improve maintainability, stabilize socket management, and fix critical bugs related to data writing and port cleanup. Key fixes and refactors: - Abstracted W5100 socket limit logic into WIZNET_CHIP_LIMIT macro. - Introduced _socketCleanup() for centralized CLOSE_WAIT/CLOSED logic. - Fixed write() to correctly return sent byte count. - Fixed begin() to use socketClose() on listen failure. - Ensured proper variable declaration for operator bool(). Signed-off-by: Badr Bacem KAABIA <badrbacemkaabia@gmail.com>
|
Memory usage change @ 1228ffe
Click for full report table
Click for full report CSV |
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 PR implements significant refactoring and stabilization for the
EthernetServerclass to handle hardware limits and TCP state transitions more robustly.Summary of Improvements:
WIZNET_CHIP_LIMITmacro, reducing redundant code inavailable(),accept(),write(), andoperator bool().void _socketCleanup(), to handle client disconnections (CLOSE_WAIT) and close out unusedCLOSEDsockets, making the main public methods cleaner and more focused on their primary duties.EthernetServer::begin()to useEthernet.socketClose()(instead ofsocketDisconnect()) if the initialsocketListenfails, ensuring the socket is correctly returned to the available pool.write(const uint8_t*, size_t)where it now correctly accumulates and returns the actualsent_datalength, rather than returning the requested buffersizeregardless of success.chipvariable is correctly declared inoperator bool()to satisfy the requirements of theWIZNET_CHIP_LIMITmacro.