mirror of
https://github.com/espressif/openthread.git
synced 2026-08-09 12:17:47 +00:00
[dhcp6-server] add anycast address for stateless config (#6423)
This commit is contained in:
@@ -77,7 +77,7 @@ Error Server::UpdateService(void)
|
||||
|
||||
while (Get<NetworkData::Leader>().GetNextOnMeshPrefix(iterator, rloc16, config) == kErrorNone)
|
||||
{
|
||||
if (!config.mDhcp)
|
||||
if (!(config.mDhcp || config.mConfigure))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
@@ -105,7 +105,7 @@ Error Server::UpdateService(void)
|
||||
|
||||
while (Get<NetworkData::Leader>().GetNextOnMeshPrefix(iterator, rloc16, config) == kErrorNone)
|
||||
{
|
||||
if (!config.mDhcp)
|
||||
if (!(config.mDhcp || config.mConfigure))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user