mirror of
https://github.com/espressif/openthread.git
synced 2026-08-29 21:39:54 +00:00
[cli] add 'childip' command to cli for getting ip addresses of MTD children (#3791)
This commit is contained in:
committed by
Jonathan Hui
parent
617f8958dd
commit
267a3b3e29
@@ -3086,6 +3086,22 @@ otThreadGetChildInfoByIndex(
|
||||
return DwordToThreadError(QueryIOCTL(aInstance, IOCTL_OTLWF_OT_CHILD_INFO_BY_INDEX, &aChildIndex, aChildInfo));
|
||||
}
|
||||
|
||||
OTAPI
|
||||
otError
|
||||
OTCALL
|
||||
otThreadGetChildNextIp6Address(
|
||||
_In_ otInstance *aInstance,
|
||||
uint8_t aChildIndex,
|
||||
_Inout_ otChildIp6AddressIterator *aIterator,
|
||||
_Out_ otIp6Address *aAddress)
|
||||
{
|
||||
if (aInstance == nullptr) return OT_ERROR_INVALID_ARGS;
|
||||
UNREFERENCED_PARAMETER(aChildIndex);
|
||||
UNREFERENCED_PARAMETER(aIterator);
|
||||
UNREFERENCED_PARAMETER(aAddress);
|
||||
return OT_ERROR_NOT_IMPLEMENTED; // TODO
|
||||
}
|
||||
|
||||
OTAPI
|
||||
otError
|
||||
OTCALL
|
||||
|
||||
Reference in New Issue
Block a user