old mode 100755
new mode 100644
| | |
| | | LINPHONE_PUBLIC LinphoneAccountCreatorStatus linphone_account_creator_update_account(LinphoneAccountCreator *creator); |
| | | |
| | | /** |
| | | * Send a request to get the password & algorithm of an account using the confirmation key |
| | | * @param[in] creator #LinphoneAccountCreator object |
| | | * @return #LinphoneAccountCreatorStatusRequestOk if everything is OK, or a specific error otherwise. |
| | | **/ |
| | | LINPHONE_PUBLIC LinphoneAccountCreatorStatus linphone_account_creator_login_linphone_account(LinphoneAccountCreator *creator); |
| | | |
| | | /** |
| | | * Acquire a reference to the LinphoneAccountCreator. |
| | | * @param[in] creator #LinphoneAccountCreator object. |
| | | * @return The same #LinphoneAccountCreator object. |
| | |
| | | LINPHONE_PUBLIC LinphoneAccountCreatorLanguageStatus linphone_account_creator_set_language(LinphoneAccountCreator *creator, const char *lang); |
| | | |
| | | /** |
| | | * Get the language use in email of SMS. |
| | | * @param[in] creator #LinphoneAccountCreator object |
| | | * @return The language of the #LinphoneAccountCreator |
| | | **/ |
| | | LINPHONE_PUBLIC const char * linphone_account_creator_get_language(const LinphoneAccountCreator *creator); |
| | | |
| | | /** |
| | | * Set the supported algorithm. |
| | | * @param[in] creator LinphoneAccountCreator object |
| | | * @param[in] algorithm The algorithm to use |
| | |
| | | LINPHONE_PUBLIC LinphoneAccountCreatorAlgoStatus linphone_account_creator_set_algorithm(LinphoneAccountCreator *creator, const char *algorithm); |
| | | |
| | | /** |
| | | * Get the algorithm configured in the account creator. |
| | | * Get the language use in email of SMS. |
| | | * @param[in] creator #LinphoneAccountCreator object |
| | | * @return The algorithm of the #LinphoneAccountCreator |
| | | * @return The language of the #LinphoneAccountCreator |
| | | **/ |
| | | LINPHONE_PUBLIC const char * linphone_account_creator_get_algorithm(const LinphoneAccountCreator *creator); |
| | | LINPHONE_PUBLIC const char * linphone_account_creator_get_language(const LinphoneAccountCreator *creator); |
| | | |
| | | /** |
| | | * Set the display name. |
| | |
| | | * @param[in] cb The update account request to be used. |
| | | **/ |
| | | LINPHONE_PUBLIC void linphone_account_creator_cbs_set_update_account(LinphoneAccountCreatorCbs *cbs, LinphoneAccountCreatorCbsStatusCb cb); |
| | | |
| | | /** |
| | | * Get the login linphone account request. |
| | | * @param[in] cbs #LinphoneAccountCreatorCbs object. |
| | | * @return The current login linphone account request. |
| | | **/ |
| | | LINPHONE_PUBLIC LinphoneAccountCreatorCbsStatusCb linphone_account_creator_cbs_get_login_linphone_account(const LinphoneAccountCreatorCbs *cbs); |
| | | |
| | | /** |
| | | * Assign a user pointer to a #LinphoneAccountCreatorCbs object. |
| | | * @param[in] cbs #LinphoneAccountCreatorCbs object. |
| | | * @param[in] cb The login linphone account request to be used. |
| | | **/ |
| | | LINPHONE_PUBLIC void linphone_account_creator_cbs_set_login_linphone_account(LinphoneAccountCreatorCbs *cbs, LinphoneAccountCreatorCbsStatusCb cb); |
| | | |
| | | /************************** End Account Creator Cbs **************************/ |
| | | |