-
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
Add mDNS shutdown #9621
Merged
Merged
Add mDNS shutdown #9621
Conversation
This file contains 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
kghost
force-pushed
the
mdns-shutdown
branch
from
September 11, 2021 05:18
e03d934
to
59ada8a
Compare
pullapprove
bot
requested review from
andy31415,
bzbarsky-apple,
chrisdecenzo,
Damian-Nordic,
hawk248,
jepenven-silabs and
msandstedt
September 11, 2021 05:18
Size increase report for "gn_qpg-example-build" from 5a9c063
Full report output
|
Size increase report for "nrfconnect-example-build" from 5a9c063
Full report output
|
Size increase report for "esp32-example-build" from 5a9c063
Full report output
|
At first glance, appears to fix the same (or similar) problem as was fixed for avahi with #9108. |
msandstedt
approved these changes
Sep 11, 2021
saurabhst
approved these changes
Sep 13, 2021
Damian-Nordic
approved these changes
Sep 13, 2021
andy31415
approved these changes
Sep 13, 2021
This was basically fixing #8349, right? |
andy31415
added a commit
to andy31415/connectedhomeip
that referenced
this pull request
Sep 13, 2021
This reverts commit 3da26cf. Tizen builds seem broken since this change: ``` 2021-09-13 15:22:31 INFO /__w/connectedhomeip/connectedhomeip/out/tizen-arm-light/../../examples/lighting-app/linux/third_party/connectedhomeip/src/lib/mdns/Discovery_ImplPlatform.h:46: undefined reference to `chip::Mdns::ChipMdnsShutdown()' 409 2021-09-13 15:22:31 INFO collect2: error: ld returned 1 exit status ```
andy31415
added a commit
that referenced
this pull request
Sep 13, 2021
This reverts commit 3da26cf. Tizen builds seem broken since this change: ``` 2021-09-13 15:22:31 INFO /__w/connectedhomeip/connectedhomeip/out/tizen-arm-light/../../examples/lighting-app/linux/third_party/connectedhomeip/src/lib/mdns/Discovery_ImplPlatform.h:46: undefined reference to `chip::Mdns::ChipMdnsShutdown()' 409 2021-09-13 15:22:31 INFO collect2: error: ld returned 1 exit status ```
kghost
added a commit
to kghost/connectedhomeip
that referenced
this pull request
Sep 14, 2021
Merged
kghost
added a commit
to kghost/connectedhomeip
that referenced
this pull request
Sep 14, 2021
kghost
added a commit
to kghost/connectedhomeip
that referenced
this pull request
Sep 14, 2021
andy31415
pushed a commit
that referenced
this pull request
Sep 14, 2021
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.
Problem
Hit a CI problem due to that udp endpoint in mDNS is used after udp pool has been freed.
Change overview
Add shutdown of mDNS service, shutdown the mDNS server and close udp endpoint before release udp endpoint pool
Testing
Verified using unit-tests
Triggered a CI failure in PR #9590