Home
last modified time | relevance | path

Searched refs:ttlConfig (Results 1 – 1 of 1) sorted by relevance

/openthread-latest/src/cli/
Dcli_srp_server.cpp231 otSrpServerTtlConfig ttlConfig; in Process() local
235 otSrpServerGetTtlConfig(GetInstancePtr(), &ttlConfig); in Process()
236 OutputLine("min ttl: %lu", ToUlong(ttlConfig.mMinTtl)); in Process()
237 OutputLine("max ttl: %lu", ToUlong(ttlConfig.mMaxTtl)); in Process()
241 SuccessOrExit(error = aArgs[0].ParseAsUint32(ttlConfig.mMinTtl)); in Process()
242 SuccessOrExit(error = aArgs[1].ParseAsUint32(ttlConfig.mMaxTtl)); in Process()
245 error = otSrpServerSetTtlConfig(GetInstancePtr(), &ttlConfig); in Process()