Fix the documentation of linphone_core_interate()

This commit is contained in:
François Grisez 2016-11-29 11:14:50 +01:00
parent 64c7e55c1f
commit 19a36dd4fc

View file

@ -2440,8 +2440,12 @@ LINPHONE_PUBLIC LinphoneCore *linphone_core_new(const LinphoneCoreVTable *vtable
**/
LINPHONE_PUBLIC LinphoneCore *linphone_core_new_with_config(const LinphoneCoreVTable *vtable, LpConfig *config, void *userdata);
/* function to be periodically called in a main loop */
/* For ICE to work properly it should be called every 20ms */
/**
* Function to be periodically called in a main loop.
* For ICE to work properly it should be called every 20ms.
* @param[in] lc The #LinphoneCore.
* @ingroup initializing
*/
LINPHONE_PUBLIC void linphone_core_iterate(LinphoneCore *lc);
/**