[docs] adding missing parameter documentation (#2333)

This commit is contained in:
Jeff Bumgardner
2017-11-10 12:21:02 -08:00
committed by Jonathan Hui
parent 4dc9f8edf0
commit 1667cc7558
2 changed files with 7 additions and 1 deletions
+4 -1
View File
@@ -488,6 +488,8 @@ typedef void (*otThreadChildTableCallback)(otThreadChildTableEvent aEvent, const
/**
* This function gets the child table callback function.
*
* @param[in] aInstance A pointer to an OpenThread instance.
*
* @returns The callback function pointer.
*
*/
@@ -500,7 +502,8 @@ otThreadChildTableCallback otThreadGetChildTableCallback(otInstance *aInstance);
* table. Subsequent calls to this method will overwrite the previous callback. Note that this callback in invoked
* while the child table is being updated and always before the `otStateChangedCallback`.
*
* @param[in] aCallback A pointer to callback handler function.
* @param[in] aInstance A pointer to an OpenThread instance.
* @param[in] aCallback A pointer to callback handler function.
*
*/
void otThreadSetChildTableCallback(otInstance *aInstance, otThreadChildTableCallback aCallback);
+3
View File
@@ -871,6 +871,9 @@ typedef struct otServiceConfig
*/
uint8_t mServiceData[kMaxServiceDataSize];
/**
* The Server configuration.
*/
otServerConfig mServerConfig;
} otServiceConfig;