Skip to content

Commit 35c8841

Browse files
[nrf noup] Clear srp implementation.
This commit implements the host srp clear, using cherry-picked upstream solution. Signed-off-by: Patryk Lipinski <patryk.lipinski@nordicsemi.no>
1 parent fffbf97 commit 35c8841

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/platform/Zephyr/ConfigurationManagerImpl.cpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242

4343
#ifdef CONFIG_NET_L2_OPENTHREAD
4444
#include <platform/ThreadStackManager.h>
45-
#endif
45+
#endif
4646

4747
namespace chip {
4848
namespace DeviceLayer {
@@ -181,6 +181,10 @@ void ConfigurationManagerImpl::DoFactoryReset(intptr_t arg)
181181
{
182182
ChipLogProgress(DeviceLayer, "Performing factory reset");
183183

184+
#if CHIP_DEVICE_CONFIG_ENABLE_THREAD_SRP_CLIENT
185+
ThreadStackMgr().ClearAllSrpHostAndServices();
186+
#endif // CHIP_DEVICE_CONFIG_ENABLE_THREAD_SRP_CLIENT
187+
184188
// Lock the Thread stack to avoid unwanted interaction with settings NVS during factory reset.
185189
#ifdef CONFIG_NET_L2_OPENTHREAD
186190
ThreadStackMgr().LockThreadStack();

0 commit comments

Comments
 (0)