Skip to content

Commit 927724c

Browse files
authored
OpenThread: clear the previous srp host and services when connecting to a new network (project-chip#35065)
1 parent 3cb1b3a commit 927724c

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/platform/OpenThread/GenericNetworkCommissioningThreadDriver.cpp

+18
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,24 @@ void GenericThreadDriver::ConnectNetwork(ByteSpan networkId, ConnectCallback * c
189189
status = Status::kUnknownError;
190190
}
191191

192+
if (status == Status::kSuccess && ThreadStackMgrImpl().IsThreadAttached())
193+
{
194+
Thread::OperationalDataset currentDataset;
195+
if (ThreadStackMgrImpl().GetThreadProvision(currentDataset) == CHIP_NO_ERROR)
196+
{
197+
// Clear the previous srp host and services
198+
if (!currentDataset.AsByteSpan().data_equal(mStagingNetwork.AsByteSpan()) &&
199+
ThreadStackMgrImpl().ClearAllSrpHostAndServices() != CHIP_NO_ERROR)
200+
{
201+
status = Status::kUnknownError;
202+
}
203+
}
204+
else
205+
{
206+
status = Status::kUnknownError;
207+
}
208+
}
209+
192210
if (status == Status::kSuccess &&
193211
DeviceLayer::ThreadStackMgrImpl().AttachToThreadNetwork(mStagingNetwork, callback) != CHIP_NO_ERROR)
194212
{

0 commit comments

Comments
 (0)