forked from mirrors/linphone-iphone
add doc on lime functions/enums
This commit is contained in:
parent
9bea70ebe3
commit
8599aec3e5
2 changed files with 19 additions and 1 deletions
|
|
@ -1488,12 +1488,27 @@ LINPHONE_PUBLIC bool_t linphone_core_get_guess_hostname(LinphoneCore *lc);
|
|||
|
||||
/**
|
||||
* Tells to LinphoneCore to use Linphone Instant Messaging encryption
|
||||
*
|
||||
* @param[in] lc LinphoneCore object
|
||||
* @param[in] val The new lime state
|
||||
* @ingroup network_parameters
|
||||
*/
|
||||
LINPHONE_PUBLIC void linphone_core_enable_lime(LinphoneCore *lc, LinphoneLimeState val);
|
||||
|
||||
|
||||
/**
|
||||
* Returns the lime state
|
||||
* @param[in] lc LinphoneCore object
|
||||
* @return The current lime state
|
||||
* @ingroup network_parameters
|
||||
**/
|
||||
LINPHONE_PUBLIC LinphoneLimeState linphone_core_lime_enabled(const LinphoneCore *lc);
|
||||
|
||||
|
||||
/**
|
||||
* Tells if lime is available
|
||||
* @param[in] lc LinphoneCore object
|
||||
* @ingroup network_parameters
|
||||
**/
|
||||
LINPHONE_PUBLIC bool_t linphone_core_lime_available(const LinphoneCore *lc);
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -516,6 +516,9 @@ typedef struct _LinphoneLDAPContactProvider LinphoneLDAPContactProvider;
|
|||
|
||||
typedef struct _LinphoneLDAPContactSearch LinphoneLDAPContactSearch;
|
||||
|
||||
/**
|
||||
* @ingroup network_parameters
|
||||
*/
|
||||
typedef enum _LinphoneLimeState {
|
||||
LinphoneLimeDisabled, /**< Lime is not used at all */
|
||||
LinphoneLimeMandatory, /**< Lime is always used */
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue