Skip to content

Commit

Permalink
Update src/platform/Tizen/ThreadStackManagerImpl.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: Arkadiusz Bokowy <arkadiusz.bokowy@gmail.com>
  • Loading branch information
jmartinez-silabs and arkq authored Feb 20, 2024
1 parent 87511b9 commit 68e7223
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/platform/Tizen/ThreadStackManagerImpl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -648,8 +648,12 @@ CHIP_ERROR ThreadStackManagerImpl::_RemoveInvalidSrpServices()

CHIP_ERROR ThreadStackManagerImpl::_ClearAllSrpHostAndServices()
{
// TODO : could not find info on Tizen thread apis
return CHIP_ERROR_NOT_IMPLEMENTED;
for (auto it = mSrpClientServices.begin(); it != mSrpClientServices.end();)
{
ReturnErrorOnFailure(_RemoveSrpService(it->mInstanceName, it->mName));
it = mSrpClientServices.erase(it);
}
return CHIP_NO_ERROR;
}

void ThreadStackManagerImpl::_ThreadIpAddressCb(int index, char * ipAddr, thread_ipaddr_type_e ipAddrType, void * userData)
Expand Down

0 comments on commit 68e7223

Please sign in to comment.