We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c617b9 commit c43bd14Copy full SHA for c43bd14
src/platform/Zephyr/ConfigurationManagerImpl.cpp
@@ -42,7 +42,7 @@
42
43
#ifdef CONFIG_NET_L2_OPENTHREAD
44
#include <platform/ThreadStackManager.h>
45
-#endif
+#endif
46
47
namespace chip {
48
namespace DeviceLayer {
@@ -181,6 +181,10 @@ void ConfigurationManagerImpl::DoFactoryReset(intptr_t arg)
181
{
182
ChipLogProgress(DeviceLayer, "Performing factory reset");
183
184
+#if CHIP_DEVICE_CONFIG_ENABLE_THREAD_SRP_CLIENT
185
+ ThreadStackMgr().ClearAllSrpHostAndServices();
186
+#endif // CHIP_DEVICE_CONFIG_ENABLE_THREAD_SRP_CLIENT
187
+
188
// Lock the Thread stack to avoid unwanted interaction with settings NVS during factory reset.
189
190
ThreadStackMgr().LockThreadStack();
0 commit comments