-
Notifications
You must be signed in to change notification settings - Fork 7.6k
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
fix(IPaddress): IPv6 restore zone id #10546
Conversation
This PR restores the IPv6 zone-id in String representation of IPv6 address as well as parsing. This follows espressif@20a28b5 that disabled it due to a crash in `netif_index_to_name()`. The fixed code scans through `netif_list` to find the `netif` name and id. Note: zone-id are incremented by 1 compared to `netif` id. For example internal zoneid value `3` actually translates to `%st2`
👋 Hello s-hadinger, we appreciate your contribution to this project! Click to see more instructions ...
Review and merge process you can expect ...
|
Test Results 62 files 62 suites 16m 33s ⏱️ For more details on these failures, see this check. Results for commit a750bdb. ♻️ This comment has been updated with latest results. |
Memory usage test (comparing PR against master branch)The table below shows the summary of memory usage change (decrease - increase) in bytes and percentage for each target.
Click to expand the detailed deltas report [usage change in BYTES]
|
This PR restores the IPv6 zone-id in String representation of IPv6 address as well as parsing. This follows 20a28b5 that disabled it due to a crash in netif_index_to_name()
Checklist
This entire section above can be deleted if all items are checked.
Description of Change
This PR restores the IPv6 zone-id in String representation of IPv6 address as well as parsing. This follows 20a28b5 that disabled it due to a crash in
netif_index_to_name()
.The fixed code scans through
netif_list
to find thenetif
name and id.Note: zone-id are incremented by 1 compared to
netif
id.For example internal zoneid value
3
actually translates to%st2
Tests scenarios
Related links
20a28b5