-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
[Silabs] MDNS and matter packet filter on WiFi Devices #34335
base: master
Are you sure you want to change the base?
[Silabs] MDNS and matter packet filter on WiFi Devices #34335
Conversation
PR #34335: Size comparison from ff6863e to 0d673da Full report (77 builds for bl602, bl702, bl702l, cyw30739, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
PR #34335: Size comparison from edf1f65 to f84980e Full report (77 builds for bl602, bl702, bl702l, cyw30739, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
PR #34335: Size comparison from 4e15283 to dcafdcb Full report (82 builds for bl602, bl702, bl702l, cyw30739, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
PR #34335: Size comparison from 4269ff5 to ed212d9 Full report (67 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
for (size_t i = 0; i < hostName.size(); ++i) | ||
{ | ||
char ch_data = *(hostName.data()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason not to do:
for (size_t i = 0; i < hostName.size(); ++i) | |
{ | |
char ch_data = *(hostName.data()); | |
for (char ch_data : hostName) | |
{ |
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
notice the span interation is not working, will have a check once
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand this comment...
bfd2a0b
to
383b9d1
Compare
PR #34335: Size comparison from 45a75ba to 6235747 Full report (68 builds for bl602, bl702, bl702l, cc13x4_26x4, cc32xx, cyw30739, efr32, esp32, linux, nrfconnect, nxp, psoc6, qpg, stm32, telink, tizen)
|
for (size_t i = 0; i < hostName.size(); ++i) | ||
{ | ||
char ch_data = *(hostName.data()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand this comment...
6235747
to
a99409b
Compare
Adding the filter on the MDNS and matter packet filter for the wifi device when device is sleepy.
Tested on SiWx917 SoC