otDnsAddressResponseGetAddress() function
Gets an IPv6 address associated with an address resolution DNS response. MUST only be used from `otDnsAddressCallback`. The response may include multiple IPv6 address records. @p aIndex can be used to iterate through the list of addresses. Index zero gets the first address and so on. When we reach end of the list, `OT_ERROR_NOT_FOUND` is returned.
Arguments
aResponse
A pointer to the response.
aIndex
The address record index to retrieve.
aAddress
A pointer to a IPv6 address to output the address (MUST NOT be NULL).
aTtl
A pointer to an `uint32_t` to output TTL for the address. It can be NULL if caller does not want to get the TTL.
Return value
OT_ERROR_NONE The address was read successfully. OT_ERROR_NOT_FOUND No address record in @p aResponse at @p aIndex. OT_ERROR_PARSE Could not parse the records in the @p aResponse. OT_ERROR_INVALID_STATE No NAT64 prefix (applicable only when NAT64 is allowed).