Merge branch 'master' of git.linphone.org:linphone into bc_vfs

This commit is contained in:
Sandrine Avakian 2016-05-17 15:50:29 +02:00
commit 5e967f62de
3 changed files with 5 additions and 4 deletions

View file

@ -240,7 +240,8 @@ static void process_request_event(void *ud, const belle_sip_request_event_t *eve
/*special case for Dialog created by notify mathing subscribe*/
belle_sip_transaction_t * sub_trans = belle_sip_dialog_get_last_transaction(dialog);
op = (SalOp*)belle_sip_transaction_get_application_data(sub_trans);
} else if (op==NULL || op->state==SalOpStateTerminated){
}
if (op==NULL || op->state==SalOpStateTerminated){
ms_warning("Receiving request for null or terminated op [%p], ignored",op);
return;
}

@ -1 +1 @@
Subproject commit 0c53b29f5d5efac175267e3e983b0b55ba5f1dfa
Subproject commit b46d2cf1cb9247a7bd2d57ba312d668981b4eed7

View file

@ -160,8 +160,8 @@ void account_create_on_server(Account *account, const LinphoneProxyConfig *refcf
linphone_proxy_config_set_expires(cfg,3*3600); //accounts are valid 3 hours
linphone_core_add_proxy_config(lc,cfg);
if (wait_for_until(lc,NULL,&account->created,1,10000)==FALSE){
/*wait 15 seconds, since the DNS SRV resolution make time a while*/
if (wait_for_until(lc,NULL,&account->created,1,15000)==FALSE){
ms_fatal("Account for %s could not be created on server.", linphone_proxy_config_get_identity(refcfg));
}
linphone_proxy_config_edit(cfg);