BLE: Add comments to GenericSecurityManager::on_identity_list_retrieved.

pull/6932/head
Vincent Coubard 2018-04-20 10:22:56 +01:00
parent 0b92397840
commit cbb33ea938
1 changed files with 6 additions and 2 deletions

View File

@ -414,10 +414,14 @@ private:
/** /**
* Callback invoked by the secure DB when the identity list has been * Callback invoked by the secure DB when the identity list has been
* retrieved. * retrieved.
* @param identity *
* @param identity View to the array passed to the secure DB. It contains
* identity entries retrieved.
*
* @param count Number of identities entries retrieved.
*/ */
void on_identity_list_retrieved( void on_identity_list_retrieved(
ble::ArrayView<pal::SecurityEntryIdentity_t*>&, ble::ArrayView<pal::SecurityEntryIdentity_t*>& identity_list,
size_t count size_t count
); );