mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-05-03 20:46:28 +00:00
fix previous commit (was incomplete)
This commit is contained in:
parent
2b6bcbc7f4
commit
38638e543d
2 changed files with 14 additions and 3 deletions
|
|
@ -7052,22 +7052,30 @@ static void _linphone_core_conference_state_changed(LinphoneConference *conf, Li
|
|||
}
|
||||
}
|
||||
|
||||
/*This function sets the "unique" conference object for the LinphoneCore - which is necessary as long as
|
||||
* liblinphone is used in a client app. When liblinphone will be used in a server app, this shall not be done anymore.*/
|
||||
static void linphone_core_set_conference(LinphoneCore *lc, LinphoneConference *conf){
|
||||
lc->conf_ctx = linphone_conference_ref(conf);
|
||||
}
|
||||
|
||||
LinphoneConference *linphone_core_create_conference_with_params(LinphoneCore *lc, const LinphoneConferenceParams *params) {
|
||||
const char *conf_method_name;
|
||||
LinphoneConference *conf;
|
||||
if(lc->conf_ctx == NULL) {
|
||||
LinphoneConferenceParams *params2 = linphone_conference_params_clone(params);
|
||||
linphone_conference_params_set_state_changed_callback(params2, _linphone_core_conference_state_changed, lc);
|
||||
conf_method_name = lp_config_get_string(lc->config, "misc", "conference_type", "local");
|
||||
if(strcasecmp(conf_method_name, "local") == 0) {
|
||||
lc->conf_ctx = linphone_local_conference_new_with_params(lc, params2);
|
||||
conf = linphone_local_conference_new_with_params(lc, params2);
|
||||
} else if(strcasecmp(conf_method_name, "remote") == 0) {
|
||||
lc->conf_ctx = linphone_remote_conference_new_with_params(lc, params2);
|
||||
conf = linphone_remote_conference_new_with_params(lc, params2);
|
||||
} else {
|
||||
ms_error("'%s' is not a valid conference method", conf_method_name);
|
||||
linphone_conference_params_unref(params2);
|
||||
return NULL;
|
||||
}
|
||||
linphone_conference_params_unref(params2);
|
||||
linphone_core_set_conference(lc, conf);
|
||||
} else {
|
||||
ms_error("Could not create a conference: a conference instance already exists");
|
||||
return NULL;
|
||||
|
|
|
|||
|
|
@ -443,7 +443,7 @@ static void simple_conference_from_scratch(void){
|
|||
BC_ASSERT_TRUE(wait_for_list(lcs,&pauline->stat.number_of_LinphoneCallReleased,1,1000));
|
||||
BC_ASSERT_TRUE(wait_for_list(lcs,&laure->stat.number_of_LinphoneCallReleased,1,1000));
|
||||
}
|
||||
|
||||
linphone_conference_unref(conf);
|
||||
linphone_core_manager_destroy(marie);
|
||||
linphone_core_manager_destroy(pauline);
|
||||
linphone_core_manager_destroy(laure);
|
||||
|
|
@ -452,6 +452,9 @@ static void simple_conference_from_scratch(void){
|
|||
bctbx_list_free(lcs);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
static void simple_encrypted_conference_with_ice(LinphoneMediaEncryption mode) {
|
||||
LinphoneCoreManager* marie = linphone_core_manager_new( "marie_rc");
|
||||
LinphoneCoreManager* pauline = linphone_core_manager_new( "pauline_tcp_rc");
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue