From 19a36dd4fcbc7955369c696d610a485f5f9e94f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Grisez?= Date: Tue, 29 Nov 2016 11:14:50 +0100 Subject: [PATCH] Fix the documentation of linphone_core_interate() --- include/linphone/core.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/include/linphone/core.h b/include/linphone/core.h index b18637d6c..befc33bc1 100644 --- a/include/linphone/core.h +++ b/include/linphone/core.h @@ -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); /**