Commit 480724b1 authored by François Grisez's avatar François Grisez
Browse files

Publish ref and unref functions of LinphoneAuthInfo

parent d62c40f0
No related merge requests found
Showing with 11 additions and 1 deletion
...@@ -61,6 +61,16 @@ LINPHONE_PUBLIC LinphoneAuthInfo *linphone_auth_info_new(const char *username, c ...@@ -61,6 +61,16 @@ LINPHONE_PUBLIC LinphoneAuthInfo *linphone_auth_info_new(const char *username, c
*/ */
LINPHONE_PUBLIC LinphoneAuthInfo *linphone_auth_info_clone(const LinphoneAuthInfo* source); LINPHONE_PUBLIC LinphoneAuthInfo *linphone_auth_info_clone(const LinphoneAuthInfo* source);
/**
* Take a reference on a #LinphoneAuthInfo.
*/
LINPHONE_PUBLIC LinphoneAuthInfo *linphone_auth_info_ref(LinphoneAuthInfo *info);
/**
* Release a #LinphoneAuthInfo.
*/
LINPHONE_PUBLIC void linphone_auth_info_unref(LinphoneAuthInfo *info);
/** /**
* Sets the password. * Sets the password.
* @param[in] info The #LinphoneAuthInfo object * @param[in] info The #LinphoneAuthInfo object
...@@ -204,7 +214,7 @@ LINPHONE_PUBLIC const char *linphone_auth_info_get_tls_cert_path(const LinphoneA ...@@ -204,7 +214,7 @@ LINPHONE_PUBLIC const char *linphone_auth_info_get_tls_cert_path(const LinphoneA
LINPHONE_PUBLIC const char *linphone_auth_info_get_tls_key_path(const LinphoneAuthInfo *info); LINPHONE_PUBLIC const char *linphone_auth_info_get_tls_key_path(const LinphoneAuthInfo *info);
/* you don't need those function*/ /* you don't need those function*/
LINPHONE_PUBLIC void linphone_auth_info_destroy(LinphoneAuthInfo *info); LINPHONE_PUBLIC LINPHONE_DEPRECATED void linphone_auth_info_destroy(LinphoneAuthInfo *info);
/** /**
* @} * @}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment