otDnsBrowseResponseGetServiceInstance() function
Gets a service instance associated with a DNS browse (service instance enumeration) response. MUST only be used from `otDnsBrowseCallback`. The response may include multiple service instance records. @p aIndex can be used to iterate through the list. Index zero gives the first record. When we reach end of the list, `OT_ERROR_NOT_FOUND` is returned. Note that this function gets the service instance label and not the full service instance name which is of the form `..`.
Arguments
aResponse
A pointer to the response.
aIndex
The service instance record index to retrieve.
aLabelBuffer
A buffer to char array to output the service instance label (MUST NOT be NULL).
aLabelBufferSize
The size of @p aLabelBuffer.
Return value
OT_ERROR_NONE The service instance was read successfully. OT_ERROR_NO_BUFS The name does not fit in @p aNameBuffer. OT_ERROR_NOT_FOUND No service instance record in @p aResponse at @p aIndex. OT_ERROR_PARSE Could not parse the records in the @p aResponse.