]> sjero.net Git - linphone/blob - coreapi/linphonecore.c
fix bad function name
[linphone] / coreapi / linphonecore.c
1 /*
2 linphone
3 Copyright (C) 2000  Simon MORLAT (simon.morlat@linphone.org)
4
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of the GNU General Public License
7 as published by the Free Software Foundation; either version 2
8 of the License, or (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18 */
19
20 #define _GNU_SOURCE
21
22 #include "linphonecore.h"
23 #include "sipsetup.h"
24 #include "lpconfig.h"
25 #include "private.h"
26
27 #include <ortp/telephonyevents.h>
28 #include <ortp/zrtp.h>
29 #include "mediastreamer2/mediastream.h"
30 #include "mediastreamer2/mseventqueue.h"
31 #include "mediastreamer2/msvolume.h"
32 #include "mediastreamer2/msequalizer.h"
33 #include "mediastreamer2/dtmfgen.h"
34
35 #ifdef INET6
36 #ifndef WIN32
37 #include <netdb.h>
38 #endif
39 #endif
40
41 #ifdef HAVE_CONFIG_H
42 #include "config.h"
43 #endif
44
45 /*#define UNSTANDART_GSM_11K 1*/
46
47 #define ROOT_CA_FILE PACKAGE_DATA_DIR "/linphone/rootca.pem"
48
49 static const char *liblinphone_version=LIBLINPHONE_VERSION;
50 static void set_network_reachable(LinphoneCore* lc,bool_t isReachable, time_t curtime);
51 static void linphone_core_run_hooks(LinphoneCore *lc);
52 static void linphone_core_free_hooks(LinphoneCore *lc);
53
54 #include "enum.h"
55 const char *linphone_core_get_nat_address_resolved(LinphoneCore *lc);
56 void linphone_core_get_local_ip(LinphoneCore *lc, const char *dest, char *result);
57 static void toggle_video_preview(LinphoneCore *lc, bool_t val);
58
59 /* relative path where is stored local ring*/
60 #define LOCAL_RING "rings/oldphone.wav"
61 /* same for remote ring (ringback)*/
62 #define REMOTE_RING "ringback.wav"
63 #define HOLD_MUSIC "rings/toy-mono.wav"
64
65
66 extern SalCallbacks linphone_sal_callbacks;
67
68 void lc_callback_obj_init(LCCallbackObj *obj,LinphoneCoreCbFunc func,void* ud)
69 {
70   obj->_func=func;
71   obj->_user_data=ud;
72 }
73
74 int lc_callback_obj_invoke(LCCallbackObj *obj, LinphoneCore *lc){
75         if (obj->_func!=NULL) obj->_func(lc,obj->_user_data);
76         return 0;
77 }
78
79
80 /*prevent a gcc bug with %c*/
81 static size_t my_strftime(char *s, size_t max, const char  *fmt,  const struct tm *tm){
82 #if !defined(_WIN32_WCE)
83         return strftime(s, max, fmt, tm);
84 #else
85         return 0;
86         /*FIXME*/
87 #endif /*_WIN32_WCE*/
88 }
89
90 static void set_call_log_date(LinphoneCallLog *cl, time_t start_time){
91         struct tm loctime;
92 #ifdef WIN32
93 #if !defined(_WIN32_WCE)
94         loctime=*localtime(&start_time);
95         /*FIXME*/
96 #endif /*_WIN32_WCE*/
97 #else
98         localtime_r(&start_time,&loctime);
99 #endif
100         my_strftime(cl->start_date,sizeof(cl->start_date),"%c",&loctime);
101 }
102
103 LinphoneCallLog * linphone_call_log_new(LinphoneCall *call, LinphoneAddress *from, LinphoneAddress *to){
104         LinphoneCallLog *cl=ms_new0(LinphoneCallLog,1);
105         cl->dir=call->dir;
106         cl->start_date_time=call->start_time;
107         set_call_log_date(cl,cl->start_date_time);
108         cl->from=from;
109         cl->to=to;
110     cl->status=LinphoneCallAborted; /*default status*/
111         return cl;
112 }
113
114 void call_logs_write_to_config_file(LinphoneCore *lc){
115         MSList *elem;
116         char logsection[32];
117         int i;
118         char *tmp;
119         LpConfig *cfg=lc->config;
120
121         if (linphone_core_get_global_state (lc)==LinphoneGlobalStartup) return;
122
123         for(i=0,elem=lc->call_logs;elem!=NULL;elem=elem->next,++i){
124                 LinphoneCallLog *cl=(LinphoneCallLog*)elem->data;
125                 snprintf(logsection,sizeof(logsection),"call_log_%i",i);
126                 lp_config_clean_section(cfg,logsection);
127                 lp_config_set_int(cfg,logsection,"dir",cl->dir);
128                 lp_config_set_int(cfg,logsection,"status",cl->status);
129                 tmp=linphone_address_as_string(cl->from);
130                 lp_config_set_string(cfg,logsection,"from",tmp);
131                 ms_free(tmp);
132                 tmp=linphone_address_as_string(cl->to);
133                 lp_config_set_string(cfg,logsection,"to",tmp);
134                 ms_free(tmp);
135                 if (cl->start_date_time)
136                         lp_config_set_int64(cfg,logsection,"start_date_time",(int64_t)cl->start_date_time);
137                 else lp_config_set_string(cfg,logsection,"start_date",cl->start_date);
138                 lp_config_set_int(cfg,logsection,"duration",cl->duration);
139                 if (cl->refkey) lp_config_set_string(cfg,logsection,"refkey",cl->refkey);
140                 lp_config_set_float(cfg,logsection,"quality",cl->quality);
141                 lp_config_set_int(cfg,logsection,"video_enabled", cl->video_enabled);
142         }
143         for(;i<lc->max_call_logs;++i){
144                 snprintf(logsection,sizeof(logsection),"call_log_%i",i);
145                 lp_config_clean_section(cfg,logsection);
146         }
147 }
148
149 static time_t string_to_time(const char *date){
150 #ifndef WIN32
151         struct tm tmtime={0};
152         strptime(date,"%c",&tmtime);
153         return mktime(&tmtime);
154 #else
155         return 0;
156 #endif
157 }
158
159 static void call_logs_read_from_config_file(LinphoneCore *lc){
160         char logsection[32];
161         int i;
162         const char *tmp;
163         uint64_t sec;
164         LpConfig *cfg=lc->config;
165         for(i=0;;++i){
166                 snprintf(logsection,sizeof(logsection),"call_log_%i",i);
167                 if (lp_config_has_section(cfg,logsection)){
168                         LinphoneCallLog *cl=ms_new0(LinphoneCallLog,1);
169                         cl->dir=lp_config_get_int(cfg,logsection,"dir",0);
170                         cl->status=lp_config_get_int(cfg,logsection,"status",0);
171                         tmp=lp_config_get_string(cfg,logsection,"from",NULL);
172                         if (tmp) cl->from=linphone_address_new(tmp);
173                         tmp=lp_config_get_string(cfg,logsection,"to",NULL);
174                         if (tmp) cl->to=linphone_address_new(tmp);
175                         sec=lp_config_get_int64(cfg,logsection,"start_date_time",0);
176                         if (sec) {
177                                 /*new call log format with date expressed in seconds */
178                                 cl->start_date_time=(time_t)sec;
179                                 set_call_log_date(cl,cl->start_date_time);
180                         }else{
181                                 tmp=lp_config_get_string(cfg,logsection,"start_date",NULL);
182                                 if (tmp) {
183                                         strncpy(cl->start_date,tmp,sizeof(cl->start_date));
184                                         cl->start_date_time=string_to_time(cl->start_date);
185                                 }
186                         }
187                         cl->duration=lp_config_get_int(cfg,logsection,"duration",0);
188                         tmp=lp_config_get_string(cfg,logsection,"refkey",NULL);
189                         if (tmp) cl->refkey=ms_strdup(tmp);
190                         cl->quality=lp_config_get_float(cfg,logsection,"quality",-1);
191                         cl->video_enabled=lp_config_get_int(cfg,logsection,"video_enabled",0);
192                         lc->call_logs=ms_list_append(lc->call_logs,cl);
193                 }else break;
194         }
195 }
196
197
198
199 /**
200  * @addtogroup call_logs
201  * @{
202 **/
203
204 /**
205  * Returns a human readable string describing the call.
206  *
207  * @note: the returned char* must be freed by the application (use ms_free()).
208 **/
209 char * linphone_call_log_to_str(LinphoneCallLog *cl){
210         char *status;
211         char *tmp;
212         char *from=linphone_address_as_string (cl->from);
213         char *to=linphone_address_as_string (cl->to);
214         switch(cl->status){
215                 case LinphoneCallAborted:
216                         status=_("aborted");
217                         break;
218                 case LinphoneCallSuccess:
219                         status=_("completed");
220                         break;
221                 case LinphoneCallMissed:
222                         status=_("missed");
223                         break;
224                 default:
225                         status="unknown";
226         }
227         tmp=ortp_strdup_printf(_("%s at %s\nFrom: %s\nTo: %s\nStatus: %s\nDuration: %i mn %i sec\n"),
228                         (cl->dir==LinphoneCallIncoming) ? _("Incoming call") : _("Outgoing call"),
229                         cl->start_date,
230                         from,
231                         to,
232                         status,
233                         cl->duration/60,
234                         cl->duration%60);
235         ms_free(from);
236         ms_free(to);
237         return tmp;
238 }
239
240 /**
241  * Returns RTP statistics computed locally regarding the call.
242  *
243 **/
244 const rtp_stats_t *linphone_call_log_get_local_stats(const LinphoneCallLog *cl){
245         return &cl->local_stats;
246 }
247
248 /**
249  * Returns RTP statistics computed by remote end and sent back via RTCP.
250  *
251  * @note Not implemented yet.
252 **/
253 const rtp_stats_t *linphone_call_log_get_remote_stats(const LinphoneCallLog *cl){
254         return &cl->remote_stats;
255 }
256
257 void linphone_call_log_set_user_pointer(LinphoneCallLog *cl, void *up){
258         cl->user_pointer=up;
259 }
260
261 void *linphone_call_log_get_user_pointer(const LinphoneCallLog *cl){
262         return cl->user_pointer;
263 }
264
265
266
267 /**
268  * Associate a persistent reference key to the call log.
269  *
270  * The reference key can be for example an id to an external database.
271  * It is stored in the config file, thus can survive to process exits/restarts.
272  *
273 **/
274 void linphone_call_log_set_ref_key(LinphoneCallLog *cl, const char *refkey){
275         if (cl->refkey!=NULL){
276                 ms_free(cl->refkey);
277                 cl->refkey=NULL;
278         }
279         if (refkey) cl->refkey=ms_strdup(refkey);
280 }
281
282 /**
283  * Get the persistent reference key associated to the call log.
284  *
285  * The reference key can be for example an id to an external database.
286  * It is stored in the config file, thus can survive to process exits/restarts.
287  *
288 **/
289 const char *linphone_call_log_get_ref_key(const LinphoneCallLog *cl){
290         return cl->refkey;
291 }
292
293 /** @} */
294
295 void linphone_call_log_destroy(LinphoneCallLog *cl){
296         if (cl->from!=NULL) linphone_address_destroy(cl->from);
297         if (cl->to!=NULL) linphone_address_destroy(cl->to);
298         if (cl->refkey!=NULL) ms_free(cl->refkey);
299         ms_free(cl);
300 }
301
302 /**
303  * Returns TRUE if the LinphoneCall asked to autoanswer
304  *
305 **/
306 bool_t linphone_call_asked_to_autoanswer(LinphoneCall *call){
307         //return TRUE if the unique(for the moment) incoming call asked to be autoanswered
308         if(call)
309                 return sal_call_autoanswer_asked(call->op);
310         else
311                 return FALSE;
312 }
313
314 int linphone_core_get_current_call_duration(const LinphoneCore *lc){
315         LinphoneCall *call=linphone_core_get_current_call((LinphoneCore *)lc);
316         if (call)  return linphone_call_get_duration(call);
317         return -1;
318 }
319
320 const LinphoneAddress *linphone_core_get_current_call_remote_address(struct _LinphoneCore *lc){
321         LinphoneCall *call=linphone_core_get_current_call(lc);
322         if (call==NULL) return NULL;
323         return linphone_call_get_remote_address(call);
324 }
325
326 /**
327  * Enable logs in supplied FILE*.
328  *
329  * @ingroup misc
330  *
331  * @param file a C FILE* where to fprintf logs. If null stdout is used.
332  *
333 **/
334 void linphone_core_enable_logs(FILE *file){
335         if (file==NULL) file=stdout;
336         ortp_set_log_file(file);
337         ortp_set_log_level_mask(ORTP_MESSAGE|ORTP_WARNING|ORTP_ERROR|ORTP_FATAL);
338 }
339
340 /**
341  * Enable logs through the user's supplied log callback.
342  *
343  * @ingroup misc
344  *
345  * @param logfunc The address of a OrtpLogFunc callback whose protoype is
346  *                typedef void (*OrtpLogFunc)(OrtpLogLevel lev, const char *fmt, va_list args);
347  *
348 **/
349 void linphone_core_enable_logs_with_cb(OrtpLogFunc logfunc){
350         ortp_set_log_level_mask(ORTP_MESSAGE|ORTP_WARNING|ORTP_ERROR|ORTP_FATAL);
351         ortp_set_log_handler(logfunc);
352 }
353
354 /**
355  * Entirely disable logging.
356  *
357  * @ingroup misc
358 **/
359 void linphone_core_disable_logs(){
360         ortp_set_log_level_mask(ORTP_ERROR|ORTP_FATAL);
361 }
362
363
364 static void net_config_read (LinphoneCore *lc)
365 {
366         int tmp;
367         const char *tmpstr;
368         LpConfig *config=lc->config;
369
370         lc->net_conf.nat_address_ip = NULL;
371         tmp=lp_config_get_int(config,"net","download_bw",0);
372         linphone_core_set_download_bandwidth(lc,tmp);
373         tmp=lp_config_get_int(config,"net","upload_bw",0);
374         linphone_core_set_upload_bandwidth(lc,tmp);
375         linphone_core_set_stun_server(lc,lp_config_get_string(config,"net","stun_server",NULL));
376         tmpstr=lp_config_get_string(lc->config,"net","nat_address",NULL);
377         if (tmpstr!=NULL && (strlen(tmpstr)<1)) tmpstr=NULL;
378         linphone_core_set_nat_address(lc,tmpstr);
379         tmp=lp_config_get_int(lc->config,"net","firewall_policy",0);
380         linphone_core_set_firewall_policy(lc,tmp);
381         tmp=lp_config_get_int(lc->config,"net","nat_sdp_only",0);
382         lc->net_conf.nat_sdp_only=tmp;
383         tmp=lp_config_get_int(lc->config,"net","mtu",0);
384         linphone_core_set_mtu(lc,tmp);
385         tmp=lp_config_get_int(lc->config,"net","download_ptime",0);
386         linphone_core_set_download_ptime(lc,tmp);
387
388 }
389
390 static void build_sound_devices_table(LinphoneCore *lc){
391         const char **devices;
392         const char **old;
393         int ndev;
394         int i;
395         const MSList *elem=ms_snd_card_manager_get_list(ms_snd_card_manager_get());
396         ndev=ms_list_size(elem);
397         devices=ms_malloc((ndev+1)*sizeof(const char *));
398         for (i=0;elem!=NULL;elem=elem->next,i++){
399                 devices[i]=ms_snd_card_get_string_id((MSSndCard *)elem->data);
400         }
401         devices[ndev]=NULL;
402         old=lc->sound_conf.cards;
403         lc->sound_conf.cards=devices;
404         if (old!=NULL) ms_free(old);
405 }
406
407 static void sound_config_read(LinphoneCore *lc)
408 {
409         int tmp;
410         const char *tmpbuf;
411         const char *devid;
412         float gain=0;
413 #ifdef __linux
414         /*alsadev let the user use custom alsa device within linphone*/
415         devid=lp_config_get_string(lc->config,"sound","alsadev",NULL);
416         if (devid){
417                 MSSndCard *card=ms_alsa_card_new_custom(devid,devid);
418                 ms_snd_card_manager_add_card(ms_snd_card_manager_get(),card);
419         }
420         tmp=lp_config_get_int(lc->config,"sound","alsa_forced_rate",-1);
421         if (tmp>0) ms_alsa_card_set_forced_sample_rate(tmp);
422 #endif
423         /* retrieve all sound devices */
424         build_sound_devices_table(lc);
425
426         devid=lp_config_get_string(lc->config,"sound","playback_dev_id",NULL);
427         linphone_core_set_playback_device(lc,devid);
428
429         devid=lp_config_get_string(lc->config,"sound","ringer_dev_id",NULL);
430         linphone_core_set_ringer_device(lc,devid);
431
432         devid=lp_config_get_string(lc->config,"sound","capture_dev_id",NULL);
433         linphone_core_set_capture_device(lc,devid);
434
435 /*
436         tmp=lp_config_get_int(lc->config,"sound","play_lev",80);
437         linphone_core_set_play_level(lc,tmp);
438         tmp=lp_config_get_int(lc->config,"sound","ring_lev",80);
439         linphone_core_set_ring_level(lc,tmp);
440         tmp=lp_config_get_int(lc->config,"sound","rec_lev",80);
441         linphone_core_set_rec_level(lc,tmp);
442         tmpbuf=lp_config_get_string(lc->config,"sound","source","m");
443         linphone_core_set_sound_source(lc,tmpbuf[0]);
444 */
445
446         tmpbuf=PACKAGE_SOUND_DIR "/" LOCAL_RING;
447         tmpbuf=lp_config_get_string(lc->config,"sound","local_ring",tmpbuf);
448         if (ortp_file_exist(tmpbuf)==-1) {
449                 ms_warning("%s does not exist",tmpbuf);
450                 tmpbuf=PACKAGE_SOUND_DIR "/" LOCAL_RING;
451         }
452         if (strstr(tmpbuf,".wav")==NULL){
453                 /* it currently uses old sound files, so replace them */
454                 tmpbuf=PACKAGE_SOUND_DIR "/" LOCAL_RING;
455         }
456         linphone_core_set_ring(lc,tmpbuf);
457
458         tmpbuf=PACKAGE_SOUND_DIR "/" REMOTE_RING;
459         tmpbuf=lp_config_get_string(lc->config,"sound","remote_ring",tmpbuf);
460         if (ortp_file_exist(tmpbuf)==-1){
461                 tmpbuf=PACKAGE_SOUND_DIR "/" REMOTE_RING;
462         }
463         if (strstr(tmpbuf,".wav")==NULL){
464                 /* it currently uses old sound files, so replace them */
465                 tmpbuf=PACKAGE_SOUND_DIR "/" REMOTE_RING;
466         }
467         linphone_core_set_ringback(lc,tmpbuf);
468
469         linphone_core_set_play_file(lc,lp_config_get_string(lc->config,"sound","hold_music",PACKAGE_SOUND_DIR "/" HOLD_MUSIC));
470         check_sound_device(lc);
471         lc->sound_conf.latency=0;
472 #ifndef __ios 
473     tmp=TRUE;
474 #else
475     tmp=FALSE; /* on iOS we have builtin echo cancellation.*/
476 #endif
477     tmp=lp_config_get_int(lc->config,"sound","echocancellation",tmp);
478         linphone_core_enable_echo_cancellation(lc,tmp);
479         linphone_core_enable_echo_limiter(lc,
480                 lp_config_get_int(lc->config,"sound","echolimiter",0));
481         linphone_core_enable_agc(lc,
482                 lp_config_get_int(lc->config,"sound","agc",0));
483
484         gain=lp_config_get_float(lc->config,"sound","playback_gain_db",0);
485         linphone_core_set_playback_gain_db (lc,gain);
486
487         linphone_core_set_remote_ringback_tone (lc,lp_config_get_string(lc->config,"sound","ringback_tone",NULL));
488
489         /*just parse requested stream feature once at start to print out eventual errors*/
490         linphone_core_get_audio_features(lc);
491 }
492
493 static void sip_config_read(LinphoneCore *lc)
494 {
495         char *contact;
496         const char *tmpstr;
497         LCSipTransports tr;
498         int i,tmp;
499         int ipv6;
500         int random_port;
501
502         tmp=lp_config_get_int(lc->config,"sip","use_info",0);
503         linphone_core_set_use_info_for_dtmf(lc,tmp);
504
505         if (lp_config_get_int(lc->config,"sip","use_session_timers",0)==1){
506                 sal_use_session_timers(lc->sal,200);
507         }
508
509         sal_use_rport(lc->sal,lp_config_get_int(lc->config,"sip","use_rport",1));
510         sal_use_101(lc->sal,lp_config_get_int(lc->config,"sip","use_101",1));
511         sal_reuse_authorization(lc->sal, lp_config_get_int(lc->config,"sip","reuse_authorization",0));
512         sal_expire_old_registration_contacts(lc->sal,lp_config_get_int(lc->config,"sip","expire_old_registration_contacts",0));
513
514         tmp=lp_config_get_int(lc->config,"sip","use_rfc2833",0);
515         linphone_core_set_use_rfc2833_for_dtmf(lc,tmp);
516
517         ipv6=lp_config_get_int(lc->config,"sip","use_ipv6",-1);
518         if (ipv6==-1){
519                 ipv6=0;
520         }
521         linphone_core_enable_ipv6(lc,ipv6);
522         memset(&tr,0,sizeof(tr));
523         
524         tr.udp_port=lp_config_get_int(lc->config,"sip","sip_port",0);
525         tr.tcp_port=lp_config_get_int(lc->config,"sip","sip_tcp_port",0);
526         tr.tls_port=lp_config_get_int(lc->config,"sip","sip_tls_port",0);
527         
528         if (lp_config_get_int(lc->config,"sip","sip_random_port",0)==1)
529                 random_port=(0xDFFF&random())+1024;
530         else random_port=0;
531         
532         if (tr.udp_port==0 && tr.tcp_port==0 && tr.tls_port==0){
533                 tr.udp_port=5060;
534         }       
535         
536         if (tr.udp_port>0 && random_port){
537                 tr.udp_port=random_port;
538                 tr.tls_port=tr.tcp_port=0; /*make sure only one transport is active at a time*/
539         }else if (tr.tcp_port>0 && random_port){
540                 tr.tcp_port=random_port;
541                 tr.tls_port=tr.udp_port=0; /*make sure only one transport is active at a time*/
542         }else if (tr.tls_port>0 && random_port){
543                 tr.tls_port=random_port;
544                 tr.udp_port=tr.tcp_port=0; /*make sure only one transport is active at a time*/
545         } 
546
547 #ifdef __linux
548         sal_set_root_ca(lc->sal, lp_config_get_string(lc->config,"sip","root_ca", "/etc/ssl/certs"));
549 #else
550         sal_set_root_ca(lc->sal, lp_config_get_string(lc->config,"sip","root_ca", ROOT_CA_FILE));
551 #endif
552         linphone_core_verify_server_certificates(lc,lp_config_get_int(lc->config,"sip","verify_server_certs",TRUE));
553         /*start listening on ports*/
554         linphone_core_set_sip_transports(lc,&tr);
555
556         tmpstr=lp_config_get_string(lc->config,"sip","contact",NULL);
557         if (tmpstr==NULL || linphone_core_set_primary_contact(lc,tmpstr)==-1) {
558                 const char *hostname=NULL;
559                 const char *username=NULL;
560 #ifdef HAVE_GETENV
561                 hostname=getenv("HOST");
562                 username=getenv("USER");
563                 if (hostname==NULL) hostname=getenv("HOSTNAME");
564 #endif /*HAVE_GETENV*/
565                 if (hostname==NULL)
566                         hostname="unknown-host";
567                 if (username==NULL){
568                         username="toto";
569                 }
570                 contact=ortp_strdup_printf("sip:%s@%s",username,hostname);
571                 linphone_core_set_primary_contact(lc,contact);
572                 ms_free(contact);
573         }
574
575         tmp=lp_config_get_int(lc->config,"sip","guess_hostname",1);
576         linphone_core_set_guess_hostname(lc,tmp);
577
578
579         tmp=lp_config_get_int(lc->config,"sip","inc_timeout",30);
580         linphone_core_set_inc_timeout(lc,tmp);
581
582         /* get proxies config */
583         for(i=0;; i++){
584                 LinphoneProxyConfig *cfg=linphone_proxy_config_new_from_config_file(lc->config,i);
585                 if (cfg!=NULL){
586                         linphone_core_add_proxy_config(lc,cfg);
587                 }else{
588                         break;
589                 }
590         }
591         /* get the default proxy */
592         tmp=lp_config_get_int(lc->config,"sip","default_proxy",-1);
593         linphone_core_set_default_proxy_index(lc,tmp);
594
595         /* read authentication information */
596         for(i=0;; i++){
597                 LinphoneAuthInfo *ai=linphone_auth_info_new_from_config_file(lc->config,i);
598                 if (ai!=NULL){
599                         linphone_core_add_auth_info(lc,ai);
600                         linphone_auth_info_destroy(ai);
601                 }else{
602                         break;
603                 }
604         }
605         /*this is to filter out unsupported encryption schemes*/
606         linphone_core_set_media_encryption(lc,linphone_core_get_media_encryption(lc));
607
608         /*for tuning or test*/
609         lc->sip_conf.sdp_200_ack=lp_config_get_int(lc->config,"sip","sdp_200_ack",0);
610         lc->sip_conf.register_only_when_network_is_up=
611                 lp_config_get_int(lc->config,"sip","register_only_when_network_is_up",1);
612         lc->sip_conf.ping_with_options=lp_config_get_int(lc->config,"sip","ping_with_options",1);
613         lc->sip_conf.auto_net_state_mon=lp_config_get_int(lc->config,"sip","auto_net_state_mon",1);
614         lc->sip_conf.keepalive_period=lp_config_get_int(lc->config,"sip","keepalive_period",10000);
615         sal_set_keepalive_period(lc->sal,lc->sip_conf.keepalive_period);
616         sal_use_one_matching_codec_policy(lc->sal,lp_config_get_int(lc->config,"sip","only_one_codec",0));
617         sal_use_double_registrations(lc->sal,lp_config_get_int(lc->config,"sip","use_double_registrations",1));
618 }
619
620 static void rtp_config_read(LinphoneCore *lc)
621 {
622         int port;
623         int jitt_comp;
624         int nortp_timeout;
625         bool_t rtp_no_xmit_on_audio_mute;
626
627         port=lp_config_get_int(lc->config,"rtp","audio_rtp_port",7078);
628         linphone_core_set_audio_port(lc,port);
629
630         port=lp_config_get_int(lc->config,"rtp","video_rtp_port",9078);
631         if (port==0) port=9078;
632         linphone_core_set_video_port(lc,port);
633
634         jitt_comp=lp_config_get_int(lc->config,"rtp","audio_jitt_comp",60);
635         linphone_core_set_audio_jittcomp(lc,jitt_comp);
636         jitt_comp=lp_config_get_int(lc->config,"rtp","video_jitt_comp",60);
637         if (jitt_comp==0) jitt_comp=60;
638         lc->rtp_conf.video_jitt_comp=jitt_comp;
639         nortp_timeout=lp_config_get_int(lc->config,"rtp","nortp_timeout",30);
640         linphone_core_set_nortp_timeout(lc,nortp_timeout);
641         rtp_no_xmit_on_audio_mute=lp_config_get_int(lc->config,"rtp","rtp_no_xmit_on_audio_mute",FALSE);
642         linphone_core_set_rtp_no_xmit_on_audio_mute(lc,rtp_no_xmit_on_audio_mute);
643 }
644
645 static PayloadType * find_payload(RtpProfile *prof, const char *mime_type, int clock_rate, const char *recv_fmtp){
646         PayloadType *candidate=NULL;
647         int i;
648         PayloadType *it;
649         for(i=0;i<127;++i){
650                 it=rtp_profile_get_payload(prof,i);
651                 if (it!=NULL && strcasecmp(mime_type,it->mime_type)==0
652                         && (clock_rate==it->clock_rate || clock_rate<=0) ){
653                         if ( (recv_fmtp && it->recv_fmtp && strstr(recv_fmtp,it->recv_fmtp)!=NULL) ||
654                                 (recv_fmtp==NULL && it->recv_fmtp==NULL) ){
655                                 /*exact match*/
656                                 if (recv_fmtp) payload_type_set_recv_fmtp(it,recv_fmtp);
657                                 return it;
658                         }else {
659                                 if (candidate){
660                                         if (it->recv_fmtp==NULL) candidate=it;
661                                 }else candidate=it;
662                         }
663                 }
664         }
665         if (candidate && recv_fmtp){
666                 payload_type_set_recv_fmtp(candidate,recv_fmtp);
667         }
668         return candidate;
669 }
670
671 static bool_t get_codec(LpConfig *config, const char* type, int index, PayloadType **ret){
672         char codeckey[50];
673         const char *mime,*fmtp;
674         int rate,enabled;
675         PayloadType *pt;
676
677         *ret=NULL;
678         snprintf(codeckey,50,"%s_%i",type,index);
679         mime=lp_config_get_string(config,codeckey,"mime",NULL);
680         if (mime==NULL || strlen(mime)==0 ) return FALSE;
681
682         rate=lp_config_get_int(config,codeckey,"rate",8000);
683         fmtp=lp_config_get_string(config,codeckey,"recv_fmtp",NULL);
684         enabled=lp_config_get_int(config,codeckey,"enabled",1);
685         pt=find_payload(&av_profile,mime,rate,fmtp);
686         if (pt && enabled ) pt->flags|=PAYLOAD_TYPE_ENABLED;
687         //ms_message("Found codec %s/%i",pt->mime_type,pt->clock_rate);
688         if (pt==NULL) ms_warning("Ignoring codec config %s/%i with fmtp=%s because unsupported",
689                         mime,rate,fmtp ? fmtp : "");
690         *ret=pt;
691         return TRUE;
692 }
693
694 #define RANK_END 10000
695 static const char *codec_pref_order[]={
696         "SILK",
697         "speex",
698         "iLBC",
699         "amr",
700         "gsm",
701         "pcmu",
702         "pcma",
703         "VP8",
704         "H264",
705         "MP4V-ES",
706         "H263-1998",
707         NULL,
708 };
709
710 static int find_codec_rank(const char *mime){
711         int i;
712         for(i=0;codec_pref_order[i]!=NULL;++i){
713                 if (strcasecmp(codec_pref_order[i],mime)==0)
714                         return i;
715         }
716         return RANK_END;
717 }
718
719 static int codec_compare(const PayloadType *a, const PayloadType *b){
720         int ra,rb;
721         ra=find_codec_rank(a->mime_type);
722         rb=find_codec_rank(b->mime_type);
723         if (ra>rb) return 1;
724         if (ra<rb) return -1;
725         return 0;
726 }
727
728 static MSList *add_missing_codecs(SalStreamType mtype, MSList *l){
729         int i;
730         for(i=0;i<127;++i){
731                 PayloadType *pt=rtp_profile_get_payload(&av_profile,i);
732                 if (pt){
733                         if (mtype==SalVideo && pt->type!=PAYLOAD_VIDEO)
734                                 pt=NULL;
735                         else if (mtype==SalAudio && (pt->type!=PAYLOAD_AUDIO_PACKETIZED
736                             && pt->type!=PAYLOAD_AUDIO_CONTINUOUS)){
737                                 pt=NULL;
738                         }
739                         if (pt && ms_filter_codec_supported(pt->mime_type)){
740                                 if (ms_list_find(l,pt)==NULL){
741                                         /*unranked codecs are disabled by default*/
742                                         if (find_codec_rank(pt->mime_type)!=RANK_END){
743                                                 payload_type_set_flag(pt,PAYLOAD_TYPE_ENABLED);
744                                         }
745                                         ms_message("Adding new codec %s/%i with fmtp %s",
746                                             pt->mime_type,pt->clock_rate,pt->recv_fmtp ? pt->recv_fmtp : "");
747                                         l=ms_list_insert_sorted(l,pt,(int (*)(const void *, const void *))codec_compare);
748                                 }
749                         }
750                 }
751         }
752         return l;
753 }
754
755 static MSList *codec_append_if_new(MSList *l, PayloadType *pt){
756         MSList *elem;
757         for (elem=l;elem!=NULL;elem=elem->next){
758                 PayloadType *ept=(PayloadType*)elem->data;
759                 if (pt==ept)
760                         return l;
761         }
762         l=ms_list_append(l,pt);
763         return l;
764 }
765
766 static void codecs_config_read(LinphoneCore *lc)
767 {
768         int i;
769         PayloadType *pt;
770         MSList *audio_codecs=NULL;
771         MSList *video_codecs=NULL;
772         for (i=0;get_codec(lc->config,"audio_codec",i,&pt);i++){
773                 if (pt){
774                         if (!ms_filter_codec_supported(pt->mime_type)){
775                                 ms_warning("Codec %s is not supported by mediastreamer2, removed.",pt->mime_type);
776                         }else audio_codecs=codec_append_if_new(audio_codecs,pt);
777                 }
778         }
779         audio_codecs=add_missing_codecs(SalAudio,audio_codecs);
780         for (i=0;get_codec(lc->config,"video_codec",i,&pt);i++){
781                 if (pt){
782                         if (!ms_filter_codec_supported(pt->mime_type)){
783                                 ms_warning("Codec %s is not supported by mediastreamer2, removed.",pt->mime_type);
784                         }else video_codecs=codec_append_if_new(video_codecs,(void *)pt);
785                 }
786         }
787         video_codecs=add_missing_codecs(SalVideo,video_codecs);
788         linphone_core_set_audio_codecs(lc,audio_codecs);
789         linphone_core_set_video_codecs(lc,video_codecs);
790         linphone_core_update_allocated_audio_bandwidth(lc);
791 }
792
793 static void build_video_devices_table(LinphoneCore *lc){
794         const MSList *elem;
795         int i;
796         int ndev;
797         const char **devices;
798         if (lc->video_conf.cams)
799                 ms_free(lc->video_conf.cams);
800         /* retrieve all video devices */
801         elem=ms_web_cam_manager_get_list(ms_web_cam_manager_get());
802         ndev=ms_list_size(elem);
803         devices=ms_malloc((ndev+1)*sizeof(const char *));
804         for (i=0;elem!=NULL;elem=elem->next,i++){
805                 devices[i]=ms_web_cam_get_string_id((MSWebCam *)elem->data);
806         }
807         devices[ndev]=NULL;
808         lc->video_conf.cams=devices;
809 }
810
811 static void video_config_read(LinphoneCore *lc){
812 #ifdef VIDEO_ENABLED
813         int capture, display, self_view;
814 #endif
815         const char *str;        
816 #ifdef VIDEO_ENABLED    
817         LinphoneVideoPolicy vpol;
818 #endif
819         build_video_devices_table(lc);
820
821         str=lp_config_get_string(lc->config,"video","device",NULL);
822         if (str && str[0]==0) str=NULL;
823         linphone_core_set_video_device(lc,str);
824
825         linphone_core_set_preferred_video_size_by_name(lc,
826                 lp_config_get_string(lc->config,"video","size","cif"));
827
828 #ifdef VIDEO_ENABLED
829         capture=lp_config_get_int(lc->config,"video","capture",1);
830         display=lp_config_get_int(lc->config,"video","display",1);
831         self_view=lp_config_get_int(lc->config,"video","self_view",1);
832         vpol.automatically_initiate=lp_config_get_int(lc->config,"video","automatically_initiate",1);
833         vpol.automatically_accept=lp_config_get_int(lc->config,"video","automatically_accept",1);
834         lc->video_conf.displaytype=lp_config_get_string(lc->config,"video","displaytype",NULL);
835         if(lc->video_conf.displaytype)
836                 ms_message("we are using a specific display:%s\n",lc->video_conf.displaytype);
837
838         linphone_core_enable_video(lc,capture,display);
839         linphone_core_enable_self_view(lc,self_view);
840         linphone_core_set_video_policy(lc,&vpol);
841 #endif
842 }
843
844 static void ui_config_read(LinphoneCore *lc)
845 {
846         LinphoneFriend *lf;
847         int i;
848         for (i=0;(lf=linphone_friend_new_from_config_file(lc,i))!=NULL;i++){
849                 linphone_core_add_friend(lc,lf);
850         }
851         call_logs_read_from_config_file(lc);
852 }
853
854 /*
855 static void autoreplier_config_init(LinphoneCore *lc)
856 {
857         autoreplier_config_t *config=&lc->autoreplier_conf;
858         config->enabled=lp_config_get_int(lc->config,"autoreplier","enabled",0);
859         config->after_seconds=lp_config_get_int(lc->config,"autoreplier","after_seconds",6);
860         config->max_users=lp_config_get_int(lc->config,"autoreplier","max_users",1);
861         config->max_rec_time=lp_config_get_int(lc->config,"autoreplier","max_rec_time",60);
862         config->max_rec_msg=lp_config_get_int(lc->config,"autoreplier","max_rec_msg",10);
863         config->message=lp_config_get_string(lc->config,"autoreplier","message",NULL);
864 }
865 */
866
867 bool_t linphone_core_tunnel_available(void){
868 #ifdef TUNNEL_ENABLED
869         return TRUE;
870 #else
871         return FALSE;
872 #endif
873 }
874
875 /**
876  * Enable adaptive rate control (experimental feature, audio-only).
877  *
878  * Adaptive rate control consists in using RTCP feedback provided information to dynamically
879  * control the output bitrate of the encoders, so that we can adapt to the network conditions and
880  * available bandwidth.
881 **/
882 void linphone_core_enable_adaptive_rate_control(LinphoneCore *lc, bool_t enabled){
883         lp_config_set_int(lc->config,"net","adaptive_rate_control",(int)enabled);
884 }
885
886 /**
887  * Returns whether adaptive rate control is enabled.
888  *
889  * See linphone_core_enable_adaptive_rate_control().
890 **/
891 bool_t linphone_core_adaptive_rate_control_enabled(const LinphoneCore *lc){
892         return lp_config_get_int(lc->config,"net","adaptive_rate_control",TRUE);
893 }
894
895 bool_t linphone_core_rtcp_enabled(const LinphoneCore *lc){
896         return lp_config_get_int(lc->config,"rtp","rtcp_enabled",TRUE);
897 }
898
899 /**
900  * Sets maximum available download bandwidth
901  *
902  * @ingroup media_parameters
903  *
904  * This is IP bandwidth, in kbit/s.
905  * This information is used signaled to other parties during
906  * calls (within SDP messages) so that the remote end can have
907  * sufficient knowledge to properly configure its audio & video
908  * codec output bitrate to not overflow available bandwidth.
909  *
910  * @param lc the LinphoneCore object
911  * @param bw the bandwidth in kbits/s, 0 for infinite
912  */
913 void linphone_core_set_download_bandwidth(LinphoneCore *lc, int bw){
914         lc->net_conf.download_bw=bw;
915         if (linphone_core_ready(lc)) lp_config_set_int(lc->config,"net","download_bw",bw);
916 }
917
918 /**
919  * Sets maximum available upload bandwidth
920  *
921  * @ingroup media_parameters
922  *
923  * This is IP bandwidth, in kbit/s.
924  * This information is used by liblinphone together with remote
925  * side available bandwidth signaled in SDP messages to properly
926  * configure audio & video codec's output bitrate.
927  *
928  * @param lc the LinphoneCore object
929  * @param bw the bandwidth in kbits/s, 0 for infinite
930  */
931 void linphone_core_set_upload_bandwidth(LinphoneCore *lc, int bw){
932         lc->net_conf.upload_bw=bw;
933         if (linphone_core_ready(lc)) lp_config_set_int(lc->config,"net","upload_bw",bw);
934 }
935
936 /**
937  * Retrieve the maximum available download bandwidth.
938  *
939  * @ingroup media_parameters
940  *
941  * This value was set by linphone_core_set_download_bandwidth().
942  *
943 **/
944 int linphone_core_get_download_bandwidth(const LinphoneCore *lc){
945         return lc->net_conf.download_bw;
946 }
947
948 /**
949  * Retrieve the maximum available upload bandwidth.
950  *
951  * @ingroup media_parameters
952  *
953  * This value was set by linphone_core_set_upload_bandwidth().
954  *
955 **/
956 int linphone_core_get_upload_bandwidth(const LinphoneCore *lc){
957         return lc->net_conf.upload_bw;
958 }
959 /**
960  * Set audio packetization time linphone expects to receive from peer
961  */
962 void linphone_core_set_download_ptime(LinphoneCore *lc, int ptime) {
963         lc->net_conf.down_ptime=ptime;
964 }
965
966 /**
967  * Get audio packetization time linphone expects to receive from peer
968  */
969 int linphone_core_get_download_ptime(LinphoneCore *lc) {
970         return lc->net_conf.down_ptime;
971 }
972
973 /**
974  * Set audio packetization time linphone will send (in absence of requirement from peer)
975  * A value of 0 stands for the current codec default packetization time.
976  *
977 **/
978 void linphone_core_set_upload_ptime(LinphoneCore *lc, int ptime){
979         lp_config_set_int(lc->config,"rtp","upload_ptime",ptime);
980 }
981
982 /**
983  * Set audio packetization time linphone will send (in absence of requirement from peer)
984  * A value of 0 stands for the current codec default packetization time.
985  *
986 **/
987 int linphone_core_get_upload_ptime(LinphoneCore *lc){
988         return lp_config_get_int(lc->config,"rtp","upload_ptime",0);
989 }
990
991
992
993 /**
994  * Returns liblinphone's version as a string.
995  *
996  * @ingroup misc
997  *
998 **/
999 const char * linphone_core_get_version(void){
1000         return liblinphone_version;
1001 }
1002
1003 static void linphone_core_assign_payload_type(LinphoneCore *lc, PayloadType *const_pt, int number, const char *recv_fmtp){
1004         PayloadType *pt;
1005         pt=payload_type_clone(const_pt);
1006         if (number==-1){
1007                 /*look for a free number */
1008                 MSList *elem;
1009                 int i;
1010                 for(i=lc->dyn_pt;i<=127;++i){
1011                         bool_t already_assigned=FALSE;
1012                         for(elem=lc->payload_types;elem!=NULL;elem=elem->next){
1013                                 PayloadType *it=(PayloadType*)elem->data;
1014                                 if (payload_type_get_number(it)==i){
1015                                         already_assigned=TRUE;
1016                                         break;
1017                                 }
1018                         }
1019                         if (!already_assigned){
1020                                 number=i;
1021                                 lc->dyn_pt=i+1;
1022                                 break;
1023                         }
1024                 }
1025                 if (number==-1){
1026                         ms_fatal("FIXME: too many codecs, no more free numbers.");
1027                 }
1028         }
1029         ms_message("assigning %s/%i payload type number %i",pt->mime_type,pt->clock_rate,number);
1030         payload_type_set_number(pt,number);
1031         if (recv_fmtp!=NULL) payload_type_set_recv_fmtp(pt,recv_fmtp);
1032         rtp_profile_set_payload(&av_profile,number,pt);
1033         lc->payload_types=ms_list_append(lc->payload_types,pt);
1034 }
1035
1036 static void linphone_core_handle_static_payloads(LinphoneCore *lc){
1037         RtpProfile *prof=&av_profile;
1038         int i;
1039         for(i=0;i<128;++i){
1040                 PayloadType *pt=rtp_profile_get_payload(prof,i);
1041                 if (pt){
1042                         if (payload_type_get_number(pt)!=i){
1043                                 linphone_core_assign_payload_type(lc,pt,i,NULL);
1044                         }
1045                 }
1046         }
1047 }
1048
1049 static void linphone_core_free_payload_types(LinphoneCore *lc){
1050         ms_list_for_each(lc->payload_types,(void (*)(void*))payload_type_destroy);
1051         ms_list_free(lc->payload_types);
1052         lc->payload_types=NULL;
1053 }
1054
1055 void linphone_core_set_state(LinphoneCore *lc, LinphoneGlobalState gstate, const char *message){
1056         lc->state=gstate;
1057         if (lc->vtable.global_state_changed){
1058                 lc->vtable.global_state_changed(lc,gstate,message);
1059         }
1060 }
1061 static void misc_config_read (LinphoneCore *lc) {
1062         LpConfig *config=lc->config;
1063     lc->max_call_logs=lp_config_get_int(config,"misc","history_max_size",15);
1064     lc->max_calls=lp_config_get_int(config,"misc","max_calls",NB_MAX_CALLS);
1065 }
1066
1067
1068
1069
1070 static void linphone_core_init (LinphoneCore * lc, const LinphoneCoreVTable *vtable, const char *config_path,
1071     const char *factory_config_path, void * userdata)
1072 {
1073         memset (lc, 0, sizeof (LinphoneCore));
1074         lc->data=userdata;
1075         lc->ringstream_autorelease=TRUE;
1076
1077         memcpy(&lc->vtable,vtable,sizeof(LinphoneCoreVTable));
1078
1079         linphone_core_set_state(lc,LinphoneGlobalStartup,"Starting up");
1080         ortp_init();
1081         lc->dyn_pt=96;
1082         linphone_core_assign_payload_type(lc,&payload_type_pcmu8000,0,NULL);
1083         linphone_core_assign_payload_type(lc,&payload_type_gsm,3,NULL);
1084         linphone_core_assign_payload_type(lc,&payload_type_pcma8000,8,NULL);
1085         linphone_core_assign_payload_type(lc,&payload_type_speex_nb,110,"vbr=on");
1086         linphone_core_assign_payload_type(lc,&payload_type_speex_wb,111,"vbr=on");
1087         linphone_core_assign_payload_type(lc,&payload_type_speex_uwb,112,"vbr=on");
1088         linphone_core_assign_payload_type(lc,&payload_type_telephone_event,101,"0-11");
1089         linphone_core_assign_payload_type(lc,&payload_type_g722,9,NULL);
1090
1091 #if defined(ANDROID) || defined (__IPHONE_OS_VERSION_MIN_REQUIRED)
1092         /*shorten the DNS lookup time and send more retransmissions on mobiles:
1093          - to workaround potential packet losses
1094          - to avoid hanging for 30 seconds when the network doesn't work despite the phone thinks it does.
1095          */
1096         _linphone_core_configure_resolver();
1097 #endif
1098
1099 #ifdef ENABLE_NONSTANDARD_GSM
1100         {
1101                 PayloadType *pt;
1102                 pt=payload_type_clone(&payload_type_gsm);
1103                 pt->clock_rate=11025;
1104                 linphone_core_assign_payload_type(lc,pt,-1,NULL);
1105                 pt->clock_rate=22050;
1106                 linphone_core_assign_payload_type(lc,pt,-1,NULL);
1107                 payload_type_destroy(pt);
1108         }
1109 #endif
1110
1111 #ifdef VIDEO_ENABLED
1112         linphone_core_assign_payload_type(lc,&payload_type_h263,34,NULL);
1113         linphone_core_assign_payload_type(lc,&payload_type_theora,97,NULL);
1114         linphone_core_assign_payload_type(lc,&payload_type_h263_1998,98,"CIF=1;QCIF=1");
1115         linphone_core_assign_payload_type(lc,&payload_type_mp4v,99,"profile-level-id=3");
1116         linphone_core_assign_payload_type(lc,&payload_type_h264,102,"profile-level-id=428014");
1117         linphone_core_assign_payload_type(lc,&payload_type_vp8,103,NULL);
1118         linphone_core_assign_payload_type(lc,&payload_type_x_snow,-1,NULL);
1119         /* due to limited space in SDP, we have to disable this h264 line which is normally no more necessary */
1120         /* linphone_core_assign_payload_type(&payload_type_h264,-1,"packetization-mode=1;profile-level-id=428014");*/
1121 #endif
1122
1123         /*add all payload type for which we don't care about the number */
1124         linphone_core_assign_payload_type(lc,&payload_type_ilbc,-1,"mode=30");
1125         linphone_core_assign_payload_type(lc,&payload_type_amr,-1,"octet-align=1");
1126         linphone_core_assign_payload_type(lc,&payload_type_amrwb,-1,"octet-align=1");
1127         linphone_core_assign_payload_type(lc,&payload_type_lpc1015,-1,NULL);
1128         linphone_core_assign_payload_type(lc,&payload_type_g726_16,-1,NULL);
1129         linphone_core_assign_payload_type(lc,&payload_type_g726_24,-1,NULL);
1130         linphone_core_assign_payload_type(lc,&payload_type_g726_32,-1,NULL);
1131         linphone_core_assign_payload_type(lc,&payload_type_g726_40,-1,NULL);
1132         linphone_core_assign_payload_type(lc,&payload_type_aal2_g726_16,-1,NULL);
1133         linphone_core_assign_payload_type(lc,&payload_type_aal2_g726_24,-1,NULL);
1134         linphone_core_assign_payload_type(lc,&payload_type_aal2_g726_32,-1,NULL);
1135         linphone_core_assign_payload_type(lc,&payload_type_aal2_g726_40,-1,NULL);
1136         linphone_core_assign_payload_type(lc,&payload_type_silk_nb,-1,NULL);
1137         linphone_core_assign_payload_type(lc,&payload_type_silk_mb,-1,NULL);
1138         linphone_core_assign_payload_type(lc,&payload_type_silk_wb,-1,NULL);
1139         linphone_core_assign_payload_type(lc,&payload_type_silk_swb,-1,NULL);
1140         linphone_core_assign_payload_type(lc,&payload_type_g729,18,"annexb=no");
1141         linphone_core_handle_static_payloads(lc);
1142         
1143         ms_init();
1144         /* create a mediastreamer2 event queue and set it as global */
1145         /* This allows to run event's callback in linphone_core_iterate() */
1146         lc->msevq=ms_event_queue_new();
1147         ms_set_global_event_queue(lc->msevq);
1148
1149         lc->config=lp_config_new(config_path);
1150         if (factory_config_path)
1151                 lp_config_read_file(lc->config,factory_config_path);
1152
1153         lc->sal=sal_init();
1154         sal_set_user_pointer(lc->sal,lc);
1155         sal_set_callbacks(lc->sal,&linphone_sal_callbacks);
1156
1157         sip_setup_register_all();
1158         sound_config_read(lc);
1159         net_config_read(lc);
1160         rtp_config_read(lc);
1161         codecs_config_read(lc);
1162         sip_config_read(lc); /* this will start eXosip*/
1163         video_config_read(lc);
1164         //autoreplier_config_init(&lc->autoreplier_conf);
1165         lc->presence_mode=LinphoneStatusOnline;
1166         misc_config_read(lc);
1167         ui_config_read(lc);
1168 #ifdef TUNNEL_ENABLED
1169         lc->tunnel=linphone_core_tunnel_new(lc);
1170         if (lc->tunnel) linphone_tunnel_configure(lc->tunnel);
1171 #endif
1172         if (lc->vtable.display_status)
1173                 lc->vtable.display_status(lc,_("Ready"));
1174         lc->auto_net_state_mon=lc->sip_conf.auto_net_state_mon;
1175         linphone_core_set_state(lc,LinphoneGlobalOn,"Ready");
1176 }
1177
1178 /**
1179  * Instanciates a LinphoneCore object.
1180  * @ingroup initializing
1181  *
1182  * The LinphoneCore object is the primary handle for doing all phone actions.
1183  * It should be unique within your application.
1184  * @param vtable a LinphoneCoreVTable structure holding your application callbacks
1185  * @param config_path a path to a config file. If it does not exists it will be created.
1186  *        The config file is used to store all settings, call logs, friends, proxies... so that all these settings
1187  *             become persistent over the life of the LinphoneCore object.
1188  *             It is allowed to set a NULL config file. In that case LinphoneCore will not store any settings.
1189  * @param factory_config_path a path to a read-only config file that can be used to
1190  *        to store hard-coded preference such as proxy settings or internal preferences.
1191  *        The settings in this factory file always override the one in the normal config file.
1192  *        It is OPTIONAL, use NULL if unneeded.
1193  * @param userdata an opaque user pointer that can be retrieved at any time (for example in
1194  *        callbacks) using linphone_core_get_user_data().
1195  *
1196 **/
1197 LinphoneCore *linphone_core_new(const LinphoneCoreVTable *vtable,
1198                                                 const char *config_path, const char *factory_config_path, void * userdata)
1199 {
1200         LinphoneCore *core=ms_new(LinphoneCore,1);
1201         linphone_core_init(core,vtable,config_path, factory_config_path, userdata);
1202         return core;
1203 }
1204
1205 /**
1206  * Returns the list of available audio codecs.
1207  *
1208  * This list is unmodifiable. The ->data field of the MSList points a PayloadType
1209  * structure holding the codec information.
1210  * It is possible to make copy of the list with ms_list_copy() in order to modify it
1211  * (such as the order of codecs).
1212 **/
1213 const MSList *linphone_core_get_audio_codecs(const LinphoneCore *lc)
1214 {
1215         return lc->codecs_conf.audio_codecs;
1216 }
1217
1218 /**
1219  * Returns the list of available video codecs.
1220  *
1221  * This list is unmodifiable. The ->data field of the MSList points a PayloadType
1222  * structure holding the codec information.
1223  * It is possible to make copy of the list with ms_list_copy() in order to modify it
1224  * (such as the order of codecs).
1225 **/
1226 const MSList *linphone_core_get_video_codecs(const LinphoneCore *lc)
1227 {
1228         return lc->codecs_conf.video_codecs;
1229 }
1230
1231 /**
1232  * Sets the local "from" identity.
1233  *
1234  * @ingroup proxies
1235  * This data is used in absence of any proxy configuration or when no
1236  * default proxy configuration is set. See LinphoneProxyConfig
1237 **/
1238 int linphone_core_set_primary_contact(LinphoneCore *lc, const char *contact)
1239 {
1240         LinphoneAddress *ctt;
1241
1242         if ((ctt=linphone_address_new(contact))==0) {
1243                 ms_error("Bad contact url: %s",contact);
1244                 return -1;
1245         }
1246         if (lc->sip_conf.contact!=NULL) ms_free(lc->sip_conf.contact);
1247         lc->sip_conf.contact=ms_strdup(contact);
1248         if (lc->sip_conf.guessed_contact!=NULL){
1249                 ms_free(lc->sip_conf.guessed_contact);
1250                 lc->sip_conf.guessed_contact=NULL;
1251         }
1252         linphone_address_destroy(ctt);
1253         return 0;
1254 }
1255
1256
1257 /*result must be an array of chars at least LINPHONE_IPADDR_SIZE */
1258 void linphone_core_get_local_ip(LinphoneCore *lc, const char *dest, char *result){
1259         const char *ip;
1260         if (linphone_core_get_firewall_policy(lc)==LinphonePolicyUseNatAddress
1261             && (ip=linphone_core_get_nat_address_resolved(lc))!=NULL){
1262                 strncpy(result,ip,LINPHONE_IPADDR_SIZE);
1263                 return;
1264         }
1265         if (linphone_core_get_local_ip_for(lc->sip_conf.ipv6_enabled ? AF_INET6 : AF_INET,dest,result)==0)
1266                 return;
1267         /*else fallback to SAL routine that will attempt to find the most realistic interface */
1268         sal_get_default_local_ip(lc->sal,lc->sip_conf.ipv6_enabled ? AF_INET6 : AF_INET,result,LINPHONE_IPADDR_SIZE);
1269 }
1270
1271 static void update_primary_contact(LinphoneCore *lc){
1272         char *guessed=NULL;
1273         char tmp[LINPHONE_IPADDR_SIZE];
1274
1275         LinphoneAddress *url;
1276         if (lc->sip_conf.guessed_contact!=NULL){
1277                 ms_free(lc->sip_conf.guessed_contact);
1278                 lc->sip_conf.guessed_contact=NULL;
1279         }
1280         url=linphone_address_new(lc->sip_conf.contact);
1281         if (!url){
1282                 ms_error("Could not parse identity contact !");
1283                 url=linphone_address_new("sip:unknown@unkwownhost");
1284         }
1285         linphone_core_get_local_ip(lc, NULL, tmp);
1286         if (strcmp(tmp,"127.0.0.1")==0 || strcmp(tmp,"::1")==0 ){
1287                 ms_warning("Local loopback network only !");
1288                 lc->sip_conf.loopback_only=TRUE;
1289         }else lc->sip_conf.loopback_only=FALSE;
1290         linphone_address_set_domain(url,tmp);
1291         linphone_address_set_port_int(url,linphone_core_get_sip_port (lc));
1292         guessed=linphone_address_as_string(url);
1293         lc->sip_conf.guessed_contact=guessed;
1294         linphone_address_destroy(url);
1295 }
1296
1297 /**
1298  * Returns the default identity when no proxy configuration is used.
1299  *
1300  * @ingroup proxies
1301 **/
1302 const char *linphone_core_get_primary_contact(LinphoneCore *lc){
1303         char *identity;
1304
1305         if (lc->sip_conf.guess_hostname){
1306                 if (lc->sip_conf.guessed_contact==NULL || lc->sip_conf.loopback_only){
1307                         update_primary_contact(lc);
1308                 }
1309                 identity=lc->sip_conf.guessed_contact;
1310         }else{
1311                 identity=lc->sip_conf.contact;
1312         }
1313         return identity;
1314 }
1315
1316 /**
1317  * Tells LinphoneCore to guess local hostname automatically in primary contact.
1318  *
1319  * @ingroup proxies
1320 **/
1321 void linphone_core_set_guess_hostname(LinphoneCore *lc, bool_t val){
1322         lc->sip_conf.guess_hostname=val;
1323 }
1324
1325 /**
1326  * Returns TRUE if hostname part of primary contact is guessed automatically.
1327  *
1328  * @ingroup proxies
1329 **/
1330 bool_t linphone_core_get_guess_hostname(LinphoneCore *lc){
1331         return lc->sip_conf.guess_hostname;
1332 }
1333
1334 /**
1335  * Same as linphone_core_get_primary_contact() but the result is a LinphoneAddress object
1336  * instead of const char*
1337  *
1338  * @ingroup proxies
1339 **/
1340 LinphoneAddress *linphone_core_get_primary_contact_parsed(LinphoneCore *lc){
1341         return linphone_address_new(linphone_core_get_primary_contact(lc));
1342 }
1343
1344 /**
1345  * Sets the list of audio codecs.
1346  *
1347  * @ingroup media_parameters
1348  * The list is taken by the LinphoneCore thus the application should not free it.
1349  * This list is made of struct PayloadType describing the codec parameters.
1350 **/
1351 int linphone_core_set_audio_codecs(LinphoneCore *lc, MSList *codecs)
1352 {
1353         if (lc->codecs_conf.audio_codecs!=NULL) ms_list_free(lc->codecs_conf.audio_codecs);
1354         lc->codecs_conf.audio_codecs=codecs;
1355         _linphone_core_codec_config_write(lc);
1356         return 0;
1357 }
1358
1359 /**
1360  * Sets the list of video codecs.
1361  *
1362  * @ingroup media_parameters
1363  * The list is taken by the LinphoneCore thus the application should not free it.
1364  * This list is made of struct PayloadType describing the codec parameters.
1365 **/
1366 int linphone_core_set_video_codecs(LinphoneCore *lc, MSList *codecs)
1367 {
1368         if (lc->codecs_conf.video_codecs!=NULL) ms_list_free(lc->codecs_conf.video_codecs);
1369         lc->codecs_conf.video_codecs=codecs;
1370         _linphone_core_codec_config_write(lc);
1371         return 0;
1372 }
1373
1374 const MSList * linphone_core_get_friend_list(const LinphoneCore *lc)
1375 {
1376         return lc->friends;
1377 }
1378
1379 /**
1380  * Returns the nominal jitter buffer size in milliseconds.
1381  *
1382  * @ingroup media_parameters
1383 **/
1384 int linphone_core_get_audio_jittcomp(LinphoneCore *lc)
1385 {
1386         return lc->rtp_conf.audio_jitt_comp;
1387 }
1388
1389 /**
1390  * Returns the UDP port used for audio streaming.
1391  *
1392  * @ingroup network_parameters
1393 **/
1394 int linphone_core_get_audio_port(const LinphoneCore *lc)
1395 {
1396         return lc->rtp_conf.audio_rtp_port;
1397 }
1398
1399 /**
1400  * Returns the UDP port used for video streaming.
1401  *
1402  * @ingroup network_parameters
1403 **/
1404 int linphone_core_get_video_port(const LinphoneCore *lc){
1405         return lc->rtp_conf.video_rtp_port;
1406 }
1407
1408
1409 /**
1410  * Returns the value in seconds of the no-rtp timeout.
1411  *
1412  * @ingroup media_parameters
1413  * When no RTP or RTCP packets have been received for a while
1414  * LinphoneCore will consider the call is broken (remote end crashed or
1415  * disconnected from the network), and thus will terminate the call.
1416  * The no-rtp timeout is the duration above which the call is considered broken.
1417 **/
1418 int linphone_core_get_nortp_timeout(const LinphoneCore *lc){
1419         return lc->rtp_conf.nortp_timeout;
1420 }
1421
1422 bool_t linphone_core_get_rtp_no_xmit_on_audio_mute(const LinphoneCore *lc){
1423         return lc->rtp_conf.rtp_no_xmit_on_audio_mute;
1424 }
1425
1426 /**
1427  * Sets the nominal audio jitter buffer size in milliseconds.
1428  *
1429  * @ingroup media_parameters
1430 **/
1431 void linphone_core_set_audio_jittcomp(LinphoneCore *lc, int value)
1432 {
1433         lc->rtp_conf.audio_jitt_comp=value;
1434 }
1435
1436 void linphone_core_set_rtp_no_xmit_on_audio_mute(LinphoneCore *lc,bool_t rtp_no_xmit_on_audio_mute){
1437         lc->rtp_conf.rtp_no_xmit_on_audio_mute=rtp_no_xmit_on_audio_mute;
1438 }
1439
1440 /**
1441  * Sets the UDP port used for audio streaming.
1442  *
1443  * @ingroup network_parameters
1444 **/
1445 void linphone_core_set_audio_port(LinphoneCore *lc, int port)
1446 {
1447         lc->rtp_conf.audio_rtp_port=port;
1448 }
1449
1450 /**
1451  * Sets the UDP port used for video streaming.
1452  *
1453  * @ingroup network_parameters
1454 **/
1455 void linphone_core_set_video_port(LinphoneCore *lc, int port){
1456         lc->rtp_conf.video_rtp_port=port;
1457 }
1458
1459 /**
1460  * Sets the no-rtp timeout value in seconds.
1461  *
1462  * @ingroup media_parameters
1463  * See linphone_core_get_nortp_timeout() for details.
1464 **/
1465 void linphone_core_set_nortp_timeout(LinphoneCore *lc, int nortp_timeout){
1466         lc->rtp_conf.nortp_timeout=nortp_timeout;
1467 }
1468
1469 /**
1470  * Indicates whether SIP INFO is used for sending digits.
1471  *
1472  * @ingroup media_parameters
1473 **/
1474 bool_t linphone_core_get_use_info_for_dtmf(LinphoneCore *lc)
1475 {
1476         return lc->sip_conf.use_info;
1477 }
1478
1479 /**
1480  * Sets whether SIP INFO is to be used for sending digits.
1481  *
1482  * @ingroup media_parameters
1483 **/
1484 void linphone_core_set_use_info_for_dtmf(LinphoneCore *lc,bool_t use_info)
1485 {
1486         lc->sip_conf.use_info=use_info;
1487 }
1488
1489 /**
1490  * Indicates whether RFC2833 is used for sending digits.
1491  *
1492  * @ingroup media_parameters
1493 **/
1494 bool_t linphone_core_get_use_rfc2833_for_dtmf(LinphoneCore *lc)
1495 {
1496         return lc->sip_conf.use_rfc2833;
1497 }
1498
1499 /**
1500  * Sets whether RFC2833 is to be used for sending digits.
1501  *
1502  * @ingroup media_parameters
1503 **/
1504 void linphone_core_set_use_rfc2833_for_dtmf(LinphoneCore *lc,bool_t use_rfc2833)
1505 {
1506         lc->sip_conf.use_rfc2833=use_rfc2833;
1507 }
1508
1509 /**
1510  * Returns the UDP port used by SIP.
1511  *
1512  * Deprecated: use linphone_core_get_sip_transports() instead.
1513  * @ingroup network_parameters
1514 **/
1515 int linphone_core_get_sip_port(LinphoneCore *lc)
1516 {
1517         LCSipTransports *tr=&lc->sip_conf.transports;
1518         return tr->udp_port>0 ? tr->udp_port : (tr->tcp_port > 0 ? tr->tcp_port : tr->tls_port);
1519 }
1520
1521 static char _ua_name[64]="Linphone";
1522 static char _ua_version[64]=LINPHONE_VERSION;
1523
1524 #ifdef HAVE_EXOSIP_GET_VERSION
1525 extern const char *eXosip_get_version();
1526 #endif
1527
1528 static void apply_user_agent(LinphoneCore *lc){
1529         char ua_string[256];
1530         snprintf(ua_string,sizeof(ua_string)-1,"%s/%s (eXosip2/%s)",_ua_name,_ua_version,
1531 #ifdef HAVE_EXOSIP_GET_VERSION
1532                  eXosip_get_version()
1533 #else
1534                  "unknown"
1535 #endif
1536         );
1537         if (lc->sal) sal_set_user_agent(lc->sal,ua_string);
1538 }
1539
1540 /**
1541  * Sets the user agent string used in SIP messages.
1542  *
1543  * @ingroup misc
1544 **/
1545 void linphone_core_set_user_agent(const char *name, const char *ver){
1546         strncpy(_ua_name,name,sizeof(_ua_name)-1);
1547         strncpy(_ua_version,ver,sizeof(_ua_version));
1548 }
1549
1550 static void transport_error(LinphoneCore *lc, const char* transport, int port){
1551         char *msg=ortp_strdup_printf("Could not start %s transport on port %i, maybe this port is already used.",transport,port);
1552         ms_warning("%s",msg);
1553         if (lc->vtable.display_warning)
1554                 lc->vtable.display_warning(lc,msg);
1555         ms_free(msg);
1556 }
1557
1558 static bool_t transports_unchanged(const LCSipTransports * tr1, const LCSipTransports * tr2){
1559         return
1560                 tr2->udp_port==tr1->udp_port &&
1561                 tr2->tcp_port==tr1->tcp_port &&
1562                 tr2->dtls_port==tr1->dtls_port &&
1563                 tr2->tls_port==tr1->tls_port;
1564 }
1565
1566 static int apply_transports(LinphoneCore *lc){
1567         Sal *sal=lc->sal;
1568         const char *anyaddr;
1569         LCSipTransports *tr=&lc->sip_conf.transports;
1570
1571         /*first of all invalidate all current registrations so that we can register again with new transports*/
1572         __linphone_core_invalidate_registers(lc);
1573         
1574         if (lc->sip_conf.ipv6_enabled)
1575                 anyaddr="::0";
1576         else
1577                 anyaddr="0.0.0.0";
1578
1579         sal_unlisten_ports(sal);
1580         if (tr->udp_port>0){
1581                 if (sal_listen_port (sal,anyaddr,tr->udp_port,SalTransportUDP,FALSE)!=0){
1582                         transport_error(lc,"udp",tr->udp_port);
1583                         return -1;
1584                 }
1585         }
1586         if (tr->tcp_port>0){
1587                 if (sal_listen_port (sal,anyaddr,tr->tcp_port,SalTransportTCP,FALSE)!=0){
1588                         transport_error(lc,"tcp",tr->tcp_port);
1589                 }
1590         }
1591         if (tr->tls_port>0){
1592                 if (sal_listen_port (sal,anyaddr,tr->tls_port,SalTransportTLS,TRUE)!=0){
1593                         transport_error(lc,"tls",tr->tls_port);
1594                 }
1595         }
1596         apply_user_agent(lc);
1597         return 0;
1598 }
1599
1600 /**
1601  * Sets the ports to be used for each of transport (UDP or TCP)
1602  *
1603  * A zero value port for a given transport means the transport
1604  * is not used.
1605  *
1606  * @ingroup network_parameters
1607 **/
1608 int linphone_core_set_sip_transports(LinphoneCore *lc, const LCSipTransports * tr){
1609
1610         if (transports_unchanged(tr,&lc->sip_conf.transports))
1611                 return 0;
1612         memcpy(&lc->sip_conf.transports,tr,sizeof(*tr));
1613
1614         if (linphone_core_ready(lc)){
1615                 lp_config_set_int(lc->config,"sip","sip_port",tr->udp_port);
1616                 lp_config_set_int(lc->config,"sip","sip_tcp_port",tr->tcp_port);
1617                 lp_config_set_int(lc->config,"sip","sip_tls_port",tr->tls_port);
1618         }
1619
1620         if (lc->sal==NULL) return 0;
1621         return apply_transports(lc);
1622 }
1623
1624 /**
1625  * Retrieves the ports used for each transport (udp, tcp).
1626  * A zero value port for a given transport means the transport
1627  * is not used.
1628  * @ingroup network_parameters
1629 **/
1630 int linphone_core_get_sip_transports(LinphoneCore *lc, LCSipTransports *tr){
1631         memcpy(tr,&lc->sip_conf.transports,sizeof(*tr));
1632         return 0;
1633 }
1634
1635 /**
1636  * Sets the UDP port to be used by SIP.
1637  *
1638  * Deprecated: use linphone_core_set_sip_transports() instead.
1639  * @ingroup network_parameters
1640 **/
1641 void linphone_core_set_sip_port(LinphoneCore *lc,int port)
1642 {
1643         LCSipTransports tr;
1644         memset(&tr,0,sizeof(tr));
1645         tr.udp_port=port;
1646         linphone_core_set_sip_transports (lc,&tr);
1647 }
1648
1649 /**
1650  * Returns TRUE if IPv6 is enabled.
1651  *
1652  * @ingroup network_parameters
1653  * See linphone_core_enable_ipv6() for more details on how IPv6 is supported in liblinphone.
1654 **/
1655 bool_t linphone_core_ipv6_enabled(LinphoneCore *lc){
1656         return lc->sip_conf.ipv6_enabled;
1657 }
1658
1659 /**
1660  * Turns IPv6 support on or off.
1661  *
1662  * @ingroup network_parameters
1663  *
1664  * @note IPv6 support is exclusive with IPv4 in liblinphone:
1665  * when IPv6 is turned on, IPv4 calls won't be possible anymore.
1666  * By default IPv6 support is off.
1667 **/
1668 void linphone_core_enable_ipv6(LinphoneCore *lc, bool_t val){
1669         if (lc->sip_conf.ipv6_enabled!=val){
1670                 lc->sip_conf.ipv6_enabled=val;
1671                 if (lc->sal){
1672                         /* we need to restart eXosip */
1673                         apply_transports(lc);
1674                 }
1675         }
1676 }
1677
1678
1679 static void monitor_network_state(LinphoneCore *lc, time_t curtime){
1680         static time_t last_check=0;
1681         static bool_t last_status=FALSE;
1682         char result[LINPHONE_IPADDR_SIZE];
1683         bool_t new_status=last_status;
1684
1685         /* only do the network up checking every five seconds */
1686         if (last_check==0 || (curtime-last_check)>=5){
1687                 linphone_core_get_local_ip_for(lc->sip_conf.ipv6_enabled ? AF_INET6 : AF_INET,NULL,result);
1688                 if (strcmp(result,"::1")!=0 && strcmp(result,"127.0.0.1")!=0){
1689                         new_status=TRUE;
1690                 }else new_status=FALSE;
1691                 last_check=curtime;
1692                 if (new_status!=last_status) {
1693                         if (new_status){
1694                                 ms_message("New local ip address is %s",result);
1695                         }
1696                         set_network_reachable(lc,new_status, curtime);
1697                         last_status=new_status;
1698                 }
1699         }
1700 }
1701
1702 static void proxy_update(LinphoneCore *lc){
1703         MSList *elem,*next;
1704         ms_list_for_each(lc->sip_conf.proxies,(void (*)(void*))&linphone_proxy_config_update);
1705         for(elem=lc->sip_conf.deleted_proxies;elem!=NULL;elem=next){
1706                 LinphoneProxyConfig* cfg = (LinphoneProxyConfig*)elem->data;
1707                 next=elem->next;
1708                 if (ms_time(NULL) - cfg->deletion_date > 5) {
1709                         lc->sip_conf.deleted_proxies =ms_list_remove_link(lc->sip_conf.deleted_proxies,elem);
1710                         ms_message("clearing proxy config for [%s]",linphone_proxy_config_get_addr(cfg));
1711                         linphone_proxy_config_destroy(cfg);
1712                 }
1713         }
1714 }
1715
1716 static void assign_buddy_info(LinphoneCore *lc, BuddyInfo *info){
1717         LinphoneFriend *lf=linphone_core_get_friend_by_address(lc,info->sip_uri);
1718         if (lf!=NULL){
1719                 lf->info=info;
1720                 ms_message("%s has a BuddyInfo assigned with image %p",info->sip_uri, info->image_data);
1721                 if (lc->vtable.buddy_info_updated)
1722                         lc->vtable.buddy_info_updated(lc,lf);
1723         }else{
1724                 ms_warning("Could not any friend with uri %s",info->sip_uri);
1725         }
1726 }
1727
1728 static void analyze_buddy_lookup_results(LinphoneCore *lc, LinphoneProxyConfig *cfg){
1729         MSList *elem;
1730         SipSetupContext *ctx=linphone_proxy_config_get_sip_setup_context(cfg);
1731         for (elem=lc->bl_reqs;elem!=NULL;elem=ms_list_next(elem)){
1732                 BuddyLookupRequest *req=(BuddyLookupRequest *)elem->data;
1733                 if (req->status==BuddyLookupDone || req->status==BuddyLookupFailure){
1734                         if (req->results!=NULL){
1735                                 BuddyInfo *i=(BuddyInfo*)req->results->data;
1736                                 ms_list_free(req->results);
1737                                 req->results=NULL;
1738                                 assign_buddy_info(lc,i);
1739                         }
1740                         sip_setup_context_buddy_lookup_free(ctx,req);
1741                         elem->data=NULL;
1742                 }
1743         }
1744         /*purge completed requests */
1745         while((elem=ms_list_find(lc->bl_reqs,NULL))!=NULL){
1746                 lc->bl_reqs=ms_list_remove_link(lc->bl_reqs,elem);
1747         }
1748 }
1749
1750 static void linphone_core_grab_buddy_infos(LinphoneCore *lc, LinphoneProxyConfig *cfg){
1751         const MSList *elem;
1752         SipSetupContext *ctx=linphone_proxy_config_get_sip_setup_context(cfg);
1753         for(elem=linphone_core_get_friend_list(lc);elem!=NULL;elem=elem->next){
1754                 LinphoneFriend *lf=(LinphoneFriend*)elem->data;
1755                 if (lf->info==NULL){
1756                         if (linphone_core_lookup_known_proxy(lc,lf->uri)==cfg){
1757                                 if (linphone_address_get_username(lf->uri)!=NULL){
1758                                         BuddyLookupRequest *req;
1759                                         char *tmp=linphone_address_as_string_uri_only(lf->uri);
1760                                         req=sip_setup_context_create_buddy_lookup_request(ctx);
1761                                         buddy_lookup_request_set_key(req,tmp);
1762                                         buddy_lookup_request_set_max_results(req,1);
1763                                         sip_setup_context_buddy_lookup_submit(ctx,req);
1764                                         lc->bl_reqs=ms_list_append(lc->bl_reqs,req);
1765                                         ms_free(tmp);
1766                                 }
1767                         }
1768                 }
1769         }
1770 }
1771
1772 static void linphone_core_do_plugin_tasks(LinphoneCore *lc){
1773         LinphoneProxyConfig *cfg=NULL;
1774         linphone_core_get_default_proxy(lc,&cfg);
1775         if (cfg){
1776                 if (lc->bl_refresh){
1777                         SipSetupContext *ctx=linphone_proxy_config_get_sip_setup_context(cfg);
1778                         if (ctx && (sip_setup_context_get_capabilities(ctx) & SIP_SETUP_CAP_BUDDY_LOOKUP)){
1779                                 linphone_core_grab_buddy_infos(lc,cfg);
1780                                 lc->bl_refresh=FALSE;
1781                         }
1782                 }
1783                 if (lc->bl_reqs) analyze_buddy_lookup_results(lc,cfg);
1784         }
1785 }
1786
1787 /**
1788  * Main loop function. It is crucial that your application call it periodically.
1789  *
1790  * @ingroup initializing
1791  * linphone_core_iterate() performs various backgrounds tasks:
1792  * - receiving of SIP messages
1793  * - handles timers and timeout
1794  * - performs registration to proxies
1795  * - authentication retries
1796  * The application MUST call this function periodically, in its main loop.
1797  * Be careful that this function must be called from the same thread as
1798  * other liblinphone methods. If it is not the case make sure all liblinphone calls are
1799  * serialized with a mutex.
1800 **/
1801 void linphone_core_iterate(LinphoneCore *lc){
1802         MSList *calls;
1803         LinphoneCall *call;
1804         time_t curtime=time(NULL);
1805         int elapsed;
1806         bool_t one_second_elapsed=FALSE;
1807
1808         if (curtime-lc->prevtime>=1){
1809                 lc->prevtime=curtime;
1810                 one_second_elapsed=TRUE;
1811         }
1812
1813         if (lc->ecc!=NULL){
1814                 LinphoneEcCalibratorStatus ecs=ec_calibrator_get_status(lc->ecc);
1815                 if (ecs!=LinphoneEcCalibratorInProgress){
1816                         if (lc->ecc->cb)
1817                                 lc->ecc->cb(lc,ecs,lc->ecc->delay,lc->ecc->cb_data);
1818                         if (ecs==LinphoneEcCalibratorDone){
1819                                 int len=lp_config_get_int(lc->config,"sound","ec_tail_len",0);
1820                                 lp_config_set_int(lc->config, "sound", "ec_delay",MAX(lc->ecc->delay-(len/2),0));
1821                         }
1822                         ec_calibrator_destroy(lc->ecc);
1823                         lc->ecc=NULL;
1824                 }
1825         }
1826
1827         if (lc->preview_finished){
1828                 lc->preview_finished=0;
1829                 ring_stop(lc->ringstream);
1830                 lc->ringstream=NULL;
1831                 lc_callback_obj_invoke(&lc->preview_finished_cb,lc);
1832         }
1833
1834         if (lc->ringstream && lc->ringstream_autorelease && lc->dmfs_playing_start_time!=0
1835             && (curtime-lc->dmfs_playing_start_time)>5){
1836                 ring_stop(lc->ringstream);
1837                 lc->ringstream=NULL;
1838                 lc->dmfs_playing_start_time=0;
1839         }
1840
1841         sal_iterate(lc->sal);
1842         if (lc->msevq) ms_event_queue_pump(lc->msevq);
1843         if (lc->auto_net_state_mon) monitor_network_state(lc,curtime);
1844
1845         proxy_update(lc);
1846
1847         //we have to iterate for each call
1848         calls= lc->calls;
1849         while(calls!= NULL){
1850                 call = (LinphoneCall *)calls->data;
1851                  /* get immediately a reference to next one in case the one
1852                  we are going to examine is destroy and removed during
1853                  linphone_core_start_invite() */
1854                 calls=calls->next;
1855                 linphone_call_background_tasks(call,one_second_elapsed);
1856                 if (call->state==LinphoneCallOutgoingInit && (curtime-call->start_time>=2)){
1857                         /*start the call even if the OPTIONS reply did not arrive*/
1858                         if (call->ice_session != NULL) {
1859                                 /* ICE candidates gathering has not finished yet, proceed with the call without ICE anyway. */
1860                                 linphone_call_delete_ice_session(call);
1861                                 linphone_call_stop_media_streams(call);
1862                         }
1863                         linphone_core_start_invite(lc,call,NULL);
1864                 }
1865                 if (call->state==LinphoneCallIncomingReceived){
1866                         elapsed=curtime-call->start_time;
1867                         ms_message("incoming call ringing for %i seconds",elapsed);
1868                         if (elapsed>lc->sip_conf.inc_timeout){
1869                                 ms_message("incoming call timeout (%i)",lc->sip_conf.inc_timeout);
1870                                 call->log->status=LinphoneCallMissed;
1871                                 call->reason=LinphoneReasonNotAnswered;
1872                                 linphone_core_terminate_call(lc,call);
1873                         }
1874                 }
1875         }
1876                 
1877         if (linphone_core_video_preview_enabled(lc)){
1878                 if (lc->previewstream==NULL && lc->calls==NULL)
1879                         toggle_video_preview(lc,TRUE);
1880 #ifdef VIDEO_ENABLED
1881                 if (lc->previewstream) video_stream_iterate(lc->previewstream);
1882 #endif
1883         }else{
1884                 if (lc->previewstream!=NULL)
1885                         toggle_video_preview(lc,FALSE);
1886         }
1887
1888         linphone_core_run_hooks(lc);
1889         linphone_core_do_plugin_tasks(lc);
1890
1891         if (lc->initial_subscribes_sent==FALSE && lc->netup_time!=0 &&
1892             (curtime-lc->netup_time)>3){
1893                 linphone_core_send_initial_subscribes(lc);
1894                 lc->initial_subscribes_sent=TRUE;
1895         }
1896
1897         if (one_second_elapsed && lp_config_needs_commit(lc->config)){
1898                 lp_config_sync(lc->config);
1899         }
1900 }
1901
1902 /**
1903  * Interpret a call destination as supplied by the user, and returns a fully qualified
1904  * LinphoneAddress.
1905  *
1906  * A sip address should look like DisplayName <sip:username@domain:port> .
1907  * Basically this function performs the following tasks
1908  * - if a phone number is entered, prepend country prefix of the default proxy
1909  *   configuration, eventually escape the '+' by 00.
1910  * - if no domain part is supplied, append the domain name of the default proxy
1911  * - if no sip: is present, prepend it
1912  *
1913  * The result is a syntaxically correct SIP address.
1914 **/
1915
1916 LinphoneAddress * linphone_core_interpret_url(LinphoneCore *lc, const char *url){
1917         enum_lookup_res_t *enumres=NULL;
1918         char *enum_domain=NULL;
1919         LinphoneProxyConfig *proxy=lc->default_proxy;;
1920         char *tmpurl;
1921         LinphoneAddress *uri;
1922
1923         if (is_enum(url,&enum_domain)){
1924                 if (lc->vtable.display_status!=NULL)
1925                         lc->vtable.display_status(lc,_("Looking for telephone number destination..."));
1926                 if (enum_lookup(enum_domain,&enumres)<0){
1927                         if (lc->vtable.display_status!=NULL)
1928                                 lc->vtable.display_status(lc,_("Could not resolve this number."));
1929                         ms_free(enum_domain);
1930                         return NULL;
1931                 }
1932                 ms_free(enum_domain);
1933                 tmpurl=enumres->sip_address[0];
1934                 uri=linphone_address_new(tmpurl);
1935                 enum_lookup_res_free(enumres);
1936                 return uri;
1937         }
1938         /* check if we have a "sip:" */
1939         if (strstr(url,"sip:")==NULL){
1940                 /* this doesn't look like a true sip uri */
1941                 if (strchr(url,'@')!=NULL){
1942                         /* seems like sip: is missing !*/
1943                         tmpurl=ms_strdup_printf("sip:%s",url);
1944                         uri=linphone_address_new(tmpurl);
1945                         ms_free(tmpurl);
1946                         if (uri){
1947                                 return uri;
1948                         }
1949                 }
1950
1951                 if (proxy!=NULL){
1952                         /* append the proxy domain suffix */
1953                         const char *identity=linphone_proxy_config_get_identity(proxy);
1954                         char normalized_username[128];
1955                         uri=linphone_address_new(identity);
1956                         if (uri==NULL){
1957                                 return NULL;
1958                         }
1959                         linphone_address_set_display_name(uri,NULL);
1960                         linphone_proxy_config_normalize_number(proxy,url,normalized_username,
1961                                                                 sizeof(normalized_username));
1962                         linphone_address_set_username(uri,normalized_username);
1963                         return uri;
1964                 }else return NULL;
1965         }
1966         uri=linphone_address_new(url);
1967         if (uri!=NULL){
1968                 return uri;
1969         }
1970         /* else we could not do anything with url given by user, so display an error */
1971         if (lc->vtable.display_warning!=NULL){
1972                 lc->vtable.display_warning(lc,_("Could not parse given sip address. A sip url usually looks like sip:user@domain"));
1973         }
1974         return NULL;
1975 }
1976
1977 /**
1978  * Returns the default identity SIP address.
1979  *
1980  * @ingroup proxies
1981  * This is an helper function:
1982  *
1983  * If no default proxy is set, this will return the primary contact (
1984  * see linphone_core_get_primary_contact() ). If a default proxy is set
1985  * it returns the registered identity on the proxy.
1986 **/
1987 const char * linphone_core_get_identity(LinphoneCore *lc){
1988         LinphoneProxyConfig *proxy=NULL;
1989         const char *from;
1990         linphone_core_get_default_proxy(lc,&proxy);
1991         if (proxy!=NULL) {
1992                 from=linphone_proxy_config_get_identity(proxy);
1993         }else from=linphone_core_get_primary_contact(lc);
1994         return from;
1995 }
1996
1997 const char * linphone_core_get_route(LinphoneCore *lc){
1998         LinphoneProxyConfig *proxy=NULL;
1999         const char *route=NULL;
2000         linphone_core_get_default_proxy(lc,&proxy);
2001         if (proxy!=NULL) {
2002                 route=linphone_proxy_config_get_route(proxy);
2003         }
2004         return route;
2005 }
2006
2007 void linphone_core_start_refered_call(LinphoneCore *lc, LinphoneCall *call){
2008         if (call->refer_pending){
2009                 LinphoneCallParams *cp=linphone_core_create_default_call_parameters(lc);
2010                 LinphoneCall *newcall;
2011                 cp->has_video &= !!lc->video_policy.automatically_initiate;
2012                 cp->referer=call;
2013                 ms_message("Starting new call to refered address %s",call->refer_to);
2014                 call->refer_pending=FALSE;
2015                 newcall=linphone_core_invite_with_params(lc,call->refer_to,cp);
2016                 linphone_call_params_destroy(cp);
2017                 if (newcall) linphone_core_notify_refer_state(lc,call,newcall);
2018         }
2019 }
2020
2021 void linphone_core_notify_refer_state(LinphoneCore *lc, LinphoneCall *referer, LinphoneCall *newcall){
2022         if (referer->op!=NULL){
2023                 sal_call_notify_refer_state(referer->op,newcall ? newcall->op : NULL);
2024         }
2025 }
2026
2027 LinphoneProxyConfig * linphone_core_lookup_known_proxy(LinphoneCore *lc, const LinphoneAddress *uri){
2028         const MSList *elem;
2029         LinphoneProxyConfig *found_cfg=NULL;
2030         LinphoneProxyConfig *default_cfg=lc->default_proxy;
2031
2032         /*always prefer the default proxy if it is matching the destination uri*/
2033         if (default_cfg){
2034                 const char *domain=linphone_proxy_config_get_domain(default_cfg);
2035                 if (strcmp(domain,linphone_address_get_domain(uri))==0)
2036                         return default_cfg;
2037         }
2038
2039         /*otherwise iterate through the other proxy config and return the first matching*/
2040         for (elem=linphone_core_get_proxy_config_list(lc);elem!=NULL;elem=elem->next){
2041                 LinphoneProxyConfig *cfg=(LinphoneProxyConfig*)elem->data;
2042                 const char *domain=linphone_proxy_config_get_domain(cfg);
2043                 if (domain!=NULL && strcmp(domain,linphone_address_get_domain(uri))==0){
2044                         found_cfg=cfg;
2045                         break;
2046                 }
2047         }
2048         return found_cfg;
2049 }
2050
2051 const char *linphone_core_find_best_identity(LinphoneCore *lc, const LinphoneAddress *to, const char **route){
2052         LinphoneProxyConfig *cfg=linphone_core_lookup_known_proxy(lc,to);
2053         if (cfg==NULL)
2054                 linphone_core_get_default_proxy (lc,&cfg);
2055         if (cfg!=NULL){
2056                 if (route) *route=linphone_proxy_config_get_route(cfg);
2057                 return linphone_proxy_config_get_identity (cfg);
2058         }
2059         return linphone_core_get_primary_contact (lc);
2060 }
2061
2062 static char *get_fixed_contact(LinphoneCore *lc, LinphoneCall *call , LinphoneProxyConfig *dest_proxy){
2063         LinphoneAddress *ctt;
2064         const char *localip=call->localip;
2065
2066         /* first use user's supplied ip address if asked*/
2067         if (linphone_core_get_firewall_policy(lc)==LinphonePolicyUseNatAddress){
2068                 ctt=linphone_core_get_primary_contact_parsed(lc);
2069                 return ms_strdup_printf("sip:%s@%s",linphone_address_get_username(ctt),
2070                         linphone_core_get_nat_address_resolved(lc));
2071         }
2072
2073         /* if already choosed, don't change it */
2074         if (call->op && sal_op_get_contact(call->op)!=NULL){
2075                 return NULL;
2076         }
2077         /* if the ping OPTIONS request succeeded use the contact guessed from the
2078          received, rport*/
2079         if (call->ping_op){
2080                 const char *guessed=sal_op_get_contact(call->ping_op);
2081                 if (guessed){
2082                         ms_message("Contact has been fixed using OPTIONS to %s",guessed);
2083                         return ms_strdup(guessed);
2084                 }
2085         }
2086
2087         /*if using a proxy, use the contact address as guessed with the REGISTERs*/
2088         if (dest_proxy && dest_proxy->op){
2089                 const char *fixed_contact=sal_op_get_contact(dest_proxy->op);
2090                 if (fixed_contact) {
2091                         ms_message("Contact has been fixed using proxy to %s",fixed_contact);
2092                         return ms_strdup(fixed_contact);
2093                 }
2094         }
2095
2096         ctt=linphone_core_get_primary_contact_parsed(lc);
2097
2098         if (ctt!=NULL){
2099                 char *ret;
2100                 /*otherwise use supllied localip*/
2101                 linphone_address_set_domain(ctt,localip);
2102                 linphone_address_set_port_int(ctt,linphone_core_get_sip_port(lc));
2103                 ret=linphone_address_as_string_uri_only(ctt);
2104                 linphone_address_destroy(ctt);
2105                 ms_message("Contact has been fixed using local ip to %s",ret);
2106                 return ret;
2107         }
2108         return NULL;
2109 }
2110
2111 int linphone_core_proceed_with_invite_if_ready(LinphoneCore *lc, LinphoneCall *call, LinphoneProxyConfig *dest_proxy){
2112         bool_t ice_ready = FALSE;
2113         bool_t ping_ready = FALSE;
2114
2115         if (call->ice_session != NULL) {
2116                 if (ice_session_candidates_gathered(call->ice_session)) ice_ready = TRUE;
2117         } else {
2118                 ice_ready = TRUE;
2119         }
2120         if (call->ping_op != NULL) {
2121                 if (call->ping_replied == TRUE) ping_ready = TRUE;
2122         } else {
2123                 ping_ready = TRUE;
2124         }
2125
2126         if ((ice_ready == TRUE) && (ping_ready == TRUE)) {
2127                 return linphone_core_start_invite(lc, call, dest_proxy);
2128         }
2129         return 0;
2130 }
2131
2132 int linphone_core_start_invite(LinphoneCore *lc, LinphoneCall *call, LinphoneProxyConfig *dest_proxy){
2133         int err;
2134         char *contact;
2135         char *real_url,*barmsg;
2136         char *from;
2137
2138         /*try to be best-effort in giving real local or routable contact address */
2139         contact=get_fixed_contact(lc,call,dest_proxy);
2140         if (contact){
2141                 sal_op_set_contact(call->op, contact);
2142                 ms_free(contact);
2143         }
2144         linphone_core_stop_dtmf_stream(lc);
2145         linphone_call_init_media_streams(call);
2146         if (lc->ringstream==NULL)
2147                 audio_stream_prepare_sound(call->audiostream,lc->sound_conf.play_sndcard,lc->sound_conf.capt_sndcard);
2148         if (!lc->sip_conf.sdp_200_ack){
2149                 call->media_pending=TRUE;
2150                 if (call->ice_session != NULL)
2151                         linphone_core_update_local_media_description_from_ice(call->localdesc, call->ice_session);
2152                 sal_call_set_local_media_description(call->op,call->localdesc);
2153         }
2154         real_url=linphone_address_as_string(call->log->to);
2155         from=linphone_address_as_string(call->log->from);
2156         err=sal_call(call->op,from,real_url);
2157
2158         if (lc->sip_conf.sdp_200_ack){
2159                 call->media_pending=TRUE;
2160                 sal_call_set_local_media_description(call->op,call->localdesc);
2161         }
2162         barmsg=ortp_strdup_printf("%s %s", _("Contacting"), real_url);
2163         if (lc->vtable.display_status!=NULL)
2164                 lc->vtable.display_status(lc,barmsg);
2165         ms_free(barmsg);
2166
2167         if (err<0){
2168                 if (lc->vtable.display_status!=NULL)
2169                         lc->vtable.display_status(lc,_("Could not call"));
2170                 linphone_call_stop_media_streams(call);
2171                 linphone_call_set_state(call,LinphoneCallError,"Call failed");
2172         }else {
2173                 linphone_call_set_state(call,LinphoneCallOutgoingProgress,"Outgoing call in progress");
2174         }
2175         ms_free(real_url);
2176         ms_free(from);
2177         return err;
2178 }
2179
2180 /**
2181  * Initiates an outgoing call
2182  *
2183  * @ingroup call_control
2184  * @param lc the LinphoneCore object
2185  * @param url the destination of the call (sip address, or phone number).
2186  *
2187  * The application doesn't own a reference to the returned LinphoneCall object.
2188  * Use linphone_call_ref() to safely keep the LinphoneCall pointer valid within your application.
2189  *
2190  * @return a LinphoneCall object or NULL in case of failure
2191 **/
2192 LinphoneCall * linphone_core_invite(LinphoneCore *lc, const char *url){
2193         LinphoneCall *call;
2194         LinphoneCallParams *p=linphone_core_create_default_call_parameters (lc);
2195         p->has_video &= !!lc->video_policy.automatically_initiate;
2196         call=linphone_core_invite_with_params(lc,url,p);
2197         linphone_call_params_destroy(p);
2198         return call;
2199 }
2200
2201
2202 /**
2203  * Initiates an outgoing call according to supplied call parameters
2204  *
2205  * @ingroup call_control
2206  * @param lc the LinphoneCore object
2207  * @param url the destination of the call (sip address, or phone number).
2208  * @param p call parameters
2209  *
2210  * The application doesn't own a reference to the returned LinphoneCall object.
2211  * Use linphone_call_ref() to safely keep the LinphoneCall pointer valid within your application.
2212  *
2213  * @return a LinphoneCall object or NULL in case of failure
2214 **/
2215 LinphoneCall * linphone_core_invite_with_params(LinphoneCore *lc, const char *url, const LinphoneCallParams *p){
2216         LinphoneAddress *addr=linphone_core_interpret_url(lc,url);
2217         if (addr){
2218                 LinphoneCall *call;
2219                 call=linphone_core_invite_address_with_params(lc,addr,p);
2220                 linphone_address_destroy(addr);
2221                 return call;
2222         }
2223         return NULL;
2224 }
2225
2226 /**
2227  * Initiates an outgoing call given a destination LinphoneAddress
2228  *
2229  * @ingroup call_control
2230  * @param lc the LinphoneCore object
2231  * @param addr the destination of the call (sip address).
2232  *
2233  * The LinphoneAddress can be constructed directly using linphone_address_new(), or
2234  * created by linphone_core_interpret_url().
2235  * The application doesn't own a reference to the returned LinphoneCall object.
2236  * Use linphone_call_ref() to safely keep the LinphoneCall pointer valid within your application.
2237  *
2238  * @return a LinphoneCall object or NULL in case of failure
2239 **/
2240 LinphoneCall * linphone_core_invite_address(LinphoneCore *lc, const LinphoneAddress *addr){
2241         LinphoneCall *call;
2242         LinphoneCallParams *p=linphone_core_create_default_call_parameters(lc);
2243         p->has_video &= !!lc->video_policy.automatically_initiate;
2244         call=linphone_core_invite_address_with_params (lc,addr,p);
2245         linphone_call_params_destroy(p);
2246         return call;
2247 }
2248
2249
2250 /**
2251  * Initiates an outgoing call given a destination LinphoneAddress
2252  *
2253  * @ingroup call_control
2254  * @param lc the LinphoneCore object
2255  * @param addr the destination of the call (sip address).
2256         @param params call parameters
2257  *
2258  * The LinphoneAddress can be constructed directly using linphone_address_new(), or
2259  * created by linphone_core_interpret_url().
2260  * The application doesn't own a reference to the returned LinphoneCall object.
2261  * Use linphone_call_ref() to safely keep the LinphoneCall pointer valid within your application.
2262  *
2263  * @return a LinphoneCall object or NULL in case of failure
2264 **/
2265 LinphoneCall * linphone_core_invite_address_with_params(LinphoneCore *lc, const LinphoneAddress *addr, const LinphoneCallParams *params)
2266 {
2267         const char *route=NULL;
2268         const char *from=NULL;
2269         LinphoneProxyConfig *proxy=NULL;
2270         LinphoneAddress *parsed_url2=NULL;
2271         char *real_url=NULL;
2272         LinphoneProxyConfig *dest_proxy=NULL;
2273         LinphoneCall *call;
2274         bool_t use_ice = FALSE;
2275
2276         linphone_core_preempt_sound_resources(lc);
2277         
2278         if(!linphone_core_can_we_add_call(lc)){
2279                 if (lc->vtable.display_warning)
2280                         lc->vtable.display_warning(lc,_("Sorry, we have reached the maximum number of simultaneous calls"));
2281                 return NULL;
2282         }
2283         linphone_core_get_default_proxy(lc,&proxy);
2284         route=linphone_core_get_route(lc);
2285
2286         real_url=linphone_address_as_string(addr);
2287         dest_proxy=linphone_core_lookup_known_proxy(lc,addr);
2288
2289         if (proxy!=dest_proxy && dest_proxy!=NULL) {
2290                 ms_message("Overriding default proxy setting for this call:");
2291                 ms_message("The used identity will be %s",linphone_proxy_config_get_identity(dest_proxy));
2292         }
2293
2294         if (dest_proxy!=NULL)
2295                 from=linphone_proxy_config_get_identity(dest_proxy);
2296         else if (proxy!=NULL)
2297                 from=linphone_proxy_config_get_identity(proxy);
2298
2299         /* if no proxy or no identity defined for this proxy, default to primary contact*/
2300         if (from==NULL) from=linphone_core_get_primary_contact(lc);
2301
2302         parsed_url2=linphone_address_new(from);
2303
2304         call=linphone_call_new_outgoing(lc,parsed_url2,linphone_address_clone(addr),params);
2305         sal_op_set_route(call->op,route);
2306
2307         if(linphone_core_add_call(lc,call)!= 0)
2308         {
2309                 ms_warning("we had a problem in adding the call into the invite ... weird");
2310                 linphone_call_unref(call);
2311                 return NULL;
2312         }
2313         /* this call becomes now the current one*/
2314         lc->current_call=call;
2315         linphone_call_set_state (call,LinphoneCallOutgoingInit,"Starting outgoing call");
2316         if (linphone_core_get_firewall_policy(call->core) == LinphonePolicyUseIce) {
2317                 /* Defer the start of the call after the ICE gathering process. */
2318                 linphone_call_init_media_streams(call);
2319                 linphone_call_start_media_streams_for_ice_gathering(call);
2320                 call->start_time=time(NULL);
2321                 if (linphone_core_gather_ice_candidates(lc,call)<0) {
2322                         /* Ice candidates gathering failed, proceed with the call anyway. */
2323                         linphone_call_delete_ice_session(call);
2324                         linphone_call_stop_media_streams(call);
2325                 } else {
2326                         use_ice = TRUE;
2327                 }
2328         }
2329
2330         if (dest_proxy==NULL && lc->sip_conf.ping_with_options==TRUE){
2331                 /*defer the start of the call after the OPTIONS ping*/
2332                 call->ping_replied=FALSE;
2333                 call->ping_op=sal_op_new(lc->sal);
2334                 sal_ping(call->ping_op,from,real_url);
2335                 sal_op_set_user_pointer(call->ping_op,call);
2336                 call->start_time=time(NULL);
2337         }else{
2338                 if (use_ice==FALSE) linphone_core_start_invite(lc,call,dest_proxy);
2339         }
2340
2341         if (real_url!=NULL) ms_free(real_url);
2342         return call;
2343 }
2344
2345 /**
2346  * Performs a simple call transfer to the specified destination.
2347  *
2348  * The remote endpoint is expected to issue a new call to the specified destination.
2349  * The current call remains active and thus can be later paused or terminated.
2350 **/
2351 int linphone_core_transfer_call(LinphoneCore *lc, LinphoneCall *call, const char *url)
2352 {
2353         char *real_url=NULL;
2354         LinphoneAddress *real_parsed_url=linphone_core_interpret_url(lc,url);
2355
2356         if (!real_parsed_url){
2357                 /* bad url */
2358                 return -1;
2359         }
2360         if (call==NULL){
2361                 ms_warning("No established call to refer.");
2362                 return -1;
2363         }
2364         //lc->call=NULL; //Do not do that you will lose the call afterward . . .
2365         real_url=linphone_address_as_string (real_parsed_url);
2366         sal_call_refer(call->op,real_url);
2367         ms_free(real_url);
2368         linphone_address_destroy(real_parsed_url);
2369         linphone_call_set_transfer_state(call, LinphoneCallOutgoingInit);
2370         return 0;
2371 }
2372
2373 /**
2374  * Transfer a call to destination of another running call. This is used for "attended transfer" scenarios.
2375  * @param lc linphone core object
2376  * @param call a running call you want to transfer
2377  * @param dest a running call whose remote person will receive the transfer
2378  *
2379  * The transfered call is supposed to be in paused state, so that it is able to accept the transfer immediately.
2380  * The destination call is a call previously established to introduce the transfered person.
2381  * This method will send a transfer request to the transfered person. The phone of the transfered is then
2382  * expected to automatically call to the destination of the transfer. The receiver of the transfer will then automatically
2383  * close the call with us (the 'dest' call).
2384 **/
2385 int linphone_core_transfer_call_to_another(LinphoneCore *lc, LinphoneCall *call, LinphoneCall *dest){
2386         int result = sal_call_refer_with_replaces (call->op,dest->op);
2387         linphone_call_set_transfer_state(call, LinphoneCallOutgoingInit);
2388         return result;
2389 }
2390
2391 bool_t linphone_core_inc_invite_pending(LinphoneCore*lc){
2392         LinphoneCall *call = linphone_core_get_current_call(lc);
2393         if(call != NULL)
2394         {
2395                 if(call->dir==LinphoneCallIncoming
2396                         && (call->state == LinphoneCallIncomingReceived || call->state ==  LinphoneCallIncomingEarlyMedia))
2397                         return TRUE;
2398         }
2399         return FALSE;
2400 }
2401
2402 void linphone_core_notify_incoming_call(LinphoneCore *lc, LinphoneCall *call){
2403         char *barmesg;
2404         char *tmp;
2405         LinphoneAddress *from_parsed;
2406         SalMediaDescription *md;
2407         bool_t propose_early_media=lp_config_get_int(lc->config,"sip","incoming_calls_early_media",FALSE);
2408         const char *ringback_tone=linphone_core_get_remote_ringback_tone (lc);
2409
2410         if (call->ice_session != NULL)
2411                 linphone_core_update_local_media_description_from_ice(call->localdesc, call->ice_session);
2412         md=sal_call_get_final_media_description(call->op);
2413         if (md && sal_media_description_empty(md)){
2414                 sal_call_decline(call->op,SalReasonMedia,NULL);
2415                 linphone_call_unref(call);
2416                 return;
2417         }
2418
2419         from_parsed=linphone_address_new(sal_op_get_from(call->op));
2420         linphone_address_clean(from_parsed);
2421         tmp=linphone_address_as_string(from_parsed);
2422         linphone_address_destroy(from_parsed);
2423         barmesg=ortp_strdup_printf("%s %s%s",tmp,_("is contacting you"),
2424             (sal_call_autoanswer_asked(call->op)) ?_(" and asked autoanswer."):_("."));
2425         if (lc->vtable.show) lc->vtable.show(lc);
2426         if (lc->vtable.display_status)
2427             lc->vtable.display_status(lc,barmesg);
2428
2429         /* play the ring if this is the only call*/
2430         if (ms_list_size(lc->calls)==1){
2431                 lc->current_call=call;
2432                 if (lc->ringstream && lc->dmfs_playing_start_time!=0){
2433                         ring_stop(lc->ringstream);
2434                         lc->ringstream=NULL;
2435                         lc->dmfs_playing_start_time=0;
2436                 }
2437                 if (lc->sound_conf.ring_sndcard!=NULL){
2438                         if(lc->ringstream==NULL && lc->sound_conf.local_ring){
2439                                 MSSndCard *ringcard=lc->sound_conf.lsd_card ?lc->sound_conf.lsd_card : lc->sound_conf.ring_sndcard;
2440                                 ms_message("Starting local ring...");
2441                                 lc->ringstream=ring_start(lc->sound_conf.local_ring,2000,ringcard);
2442                         }
2443                         else
2444                         {
2445                                 ms_message("the local ring is already started");
2446                         }
2447                 }
2448         }else{
2449                 /* else play a tone within the context of the current call */
2450                 call->ringing_beep=TRUE;
2451                 linphone_core_play_tone(lc);
2452         }
2453
2454         linphone_call_set_state(call,LinphoneCallIncomingReceived,"Incoming call");
2455
2456         if (call->state==LinphoneCallIncomingReceived){
2457                 sal_call_notify_ringing(call->op,propose_early_media || ringback_tone!=NULL);
2458
2459                 if (propose_early_media || ringback_tone!=NULL){
2460                         linphone_call_set_state(call,LinphoneCallIncomingEarlyMedia,"Incoming call early media");
2461                         md=sal_call_get_final_media_description(call->op);
2462                         linphone_core_update_streams(lc,call,md);
2463                 }
2464                 if (sal_call_get_replaces(call->op)!=NULL && lp_config_get_int(lc->config,"sip","auto_answer_replacing_calls",1)){
2465                         linphone_core_accept_call(lc,call);
2466                 }
2467         }
2468         linphone_call_unref(call);
2469
2470         ms_free(barmesg);
2471         ms_free(tmp);
2472 }
2473
2474 int linphone_core_start_update_call(LinphoneCore *lc, LinphoneCall *call){
2475         const char *subject;
2476         call->camera_active=call->params.has_video;
2477         update_local_media_description(lc,call);
2478         if (call->ice_session != NULL)
2479                 linphone_core_update_local_media_description_from_ice(call->localdesc, call->ice_session);
2480
2481         if (call->params.in_conference){
2482                 subject="Conference";
2483         }else{
2484                 subject="Media change";
2485         }
2486         if (lc->vtable.display_status)
2487                 lc->vtable.display_status(lc,_("Modifying call parameters..."));
2488         sal_call_set_local_media_description (call->op,call->localdesc);
2489         return sal_call_update(call->op,subject);
2490 }
2491
2492 /**
2493  * @ingroup call_control
2494  * Updates a running call according to supplied call parameters or parameters changed in the LinphoneCore.
2495  *
2496  * In this version this is limited to the following use cases:
2497  * - setting up/down the video stream according to the video parameter of the LinphoneCallParams (see linphone_call_params_enable_video() ).
2498  * - changing the size of the transmitted video after calling linphone_core_set_preferred_video_size()
2499  *
2500  * In case no changes are requested through the LinphoneCallParams argument, then this argument can be omitted and set to NULL.
2501  * @param lc the core
2502  * @param call the call to be updated
2503  * @param params the new call parameters to use. (may be NULL)
2504  * @return 0 if successful, -1 otherwise.
2505 **/
2506 int linphone_core_update_call(LinphoneCore *lc, LinphoneCall *call, const LinphoneCallParams *params){
2507         int err=0;
2508         if (params!=NULL){
2509 #ifdef VIDEO_ENABLED
2510                 if ((call->ice_session != NULL) && (call->videostream != NULL) && !params->has_video) {
2511                         ice_session_remove_check_list(call->ice_session, call->videostream->ice_check_list);
2512                         call->videostream->ice_check_list = NULL;
2513                 }
2514                 if ((call->ice_session != NULL) && ((ice_session_state(call->ice_session) != IS_Completed) || (call->params.has_video != params->has_video))) {
2515                         /* Defer call update until the ICE candidates gathering process has finished. */
2516                         ms_message("Defer call update to gather ICE candidates");
2517                         call->params = *params;
2518                         update_local_media_description(lc, call);
2519                         if (call->params.has_video) {
2520                                 linphone_call_init_video_stream(call);
2521                                 video_stream_prepare_video(call->videostream);
2522                                 if (linphone_core_gather_ice_candidates(lc,call)<0) {
2523                                         /* Ice candidates gathering failed, proceed with the call anyway. */
2524                                         linphone_call_delete_ice_session(call);
2525                                 } else return err;
2526                         }
2527                 } else {
2528                         call->params = *params;
2529                 }
2530 #endif
2531                 err = linphone_core_start_update_call(lc, call);
2532         }else{
2533 #ifdef VIDEO_ENABLED
2534                 if (call->videostream!=NULL){
2535                         video_stream_set_sent_video_size(call->videostream,linphone_core_get_preferred_video_size(lc));
2536                         if (call->camera_active && call->videostream->cam!=lc->video_conf.device){
2537                                 video_stream_change_camera(call->videostream,lc->video_conf.device);
2538                         }else video_stream_update_video_params(call->videostream);
2539                 }
2540 #endif
2541         }
2542
2543         return err;
2544 }
2545
2546 /**
2547  * @ingroup call_control
2548  * When receiving a #LinphoneCallUpdatedByRemote state notification, prevent LinphoneCore from performing an automatic answer.
2549  * 
2550  * When receiving a #LinphoneCallUpdatedByRemote state notification (ie an incoming reINVITE), the default behaviour of
2551  * LinphoneCore is to automatically answer the reINIVTE with call parameters unchanged.
2552  * However when for example when the remote party updated the call to propose a video stream, it can be useful
2553  * to prompt the user before answering. This can be achieved by calling linphone_core_defer_call_update() during 
2554  * the call state notifiacation, to deactivate the automatic answer that would just confirm the audio but reject the video.
2555  * Then, when the user responds to dialog prompt, it becomes possible to call linphone_core_accept_call_update() to answer
2556  * the reINVITE, with eventually video enabled in the LinphoneCallParams argument.
2557  * 
2558  * @return 0 if successful, -1 if the linphone_core_defer_call_update() was done outside a #LinphoneCallUpdatedByRemote notification, which is illegal.
2559 **/
2560 int linphone_core_defer_call_update(LinphoneCore *lc, LinphoneCall *call){
2561         if (call->state==LinphoneCallUpdatedByRemote){
2562                 call->defer_update=TRUE;
2563                 return 0;
2564         }
2565         ms_error("linphone_core_defer_call_update() not done in state LinphoneCallUpdatedByRemote");
2566         return -1;
2567 }
2568
2569 int linphone_core_start_accept_call_update(LinphoneCore *lc, LinphoneCall *call){
2570         SalMediaDescription *md;
2571         if (call->ice_session != NULL) {
2572                 if (ice_session_nb_losing_pairs(call->ice_session) > 0) {
2573                         /* Defer the sending of the answer until there are no losing pairs left. */
2574                         return 0;
2575                 }
2576                 linphone_core_update_local_media_description_from_ice(call->localdesc, call->ice_session);
2577         }
2578         sal_call_set_local_media_description(call->op,call->localdesc);
2579         sal_call_accept(call->op);
2580         md=sal_call_get_final_media_description(call->op);
2581         if (md && !sal_media_description_empty(md))
2582                 linphone_core_update_streams (lc,call,md);
2583         linphone_call_set_state(call,LinphoneCallStreamsRunning,"Connected (streams running)");
2584         return 0;
2585 }
2586
2587 /**
2588  * @ingroup call_control
2589  * Accept call modifications initiated by other end.
2590  * 
2591  * This call may be performed in response to a #LinphoneCallUpdatedByRemote state notification.
2592  * When such notification arrives, the application can decide to call linphone_core_defer_update_call() so that it can
2593  * have the time to prompt the user. linphone_call_get_remote_params() can be used to get information about the call parameters
2594  * requested by the other party, such as whether a video stream is requested.
2595  * 
2596  * When the user accepts or refuse the change, linphone_core_accept_call_update() can be done to answer to the other party.
2597  * If params is NULL, then the same call parameters established before the update request will continue to be used (no change).
2598  * If params is not NULL, then the update will be accepted according to the parameters passed.
2599  * Typical example is when a user accepts to start video, then params should indicate that video stream should be used 
2600  * (see linphone_call_params_enable_video()).
2601  * @param lc the linphone core object.
2602  * @param call the LinphoneCall object
2603  * @param params a LinphoneCallParams object describing the call parameters to accept.
2604  * @return 0 if sucessful, -1 otherwise (actually when this function call is performed outside ot #LinphoneCallUpdatedByRemote state).
2605 **/
2606 int linphone_core_accept_call_update(LinphoneCore *lc, LinphoneCall *call, const LinphoneCallParams *params){
2607         bool_t old_has_video = call->params.has_video;
2608         if (call->state!=LinphoneCallUpdatedByRemote){
2609                 ms_error("linphone_core_accept_update(): invalid state %s to call this function.",
2610                          linphone_call_state_to_string(call->state));
2611                 return -1;
2612         }
2613         if (params==NULL){
2614                 call->params.has_video=lc->video_policy.automatically_accept || call->current_params.has_video;
2615         }else
2616                 call->params=*params;
2617
2618         if (call->current_params.in_conference) {
2619                 ms_warning("Video isn't supported in conference");
2620                 call->params.has_video = FALSE;
2621         }
2622         call->camera_active=call->params.has_video;
2623         update_local_media_description(lc,call);
2624         if (call->ice_session != NULL) {
2625                 linphone_core_update_ice_from_remote_media_description(call, sal_call_get_remote_media_description(call->op));
2626 #ifdef VIDEO_ENABLED
2627                 if ((call->ice_session != NULL) &&!ice_session_candidates_gathered(call->ice_session)) {
2628                         if ((call->params.has_video) && (call->params.has_video != old_has_video)) {
2629                                 linphone_call_init_video_stream(call);
2630                                 video_stream_prepare_video(call->videostream);
2631                                 if (linphone_core_gather_ice_candidates(lc,call)<0) {
2632                                         /* Ice candidates gathering failed, proceed with the call anyway. */
2633                                         linphone_call_delete_ice_session(call);
2634                                 } else return 0;
2635                         }
2636                 }
2637 #endif
2638         }
2639         linphone_core_start_accept_call_update(lc, call);
2640         return 0;
2641 }
2642
2643 /**
2644  * Accept an incoming call.
2645  *
2646  * @ingroup call_control
2647  * Basically the application is notified of incoming calls within the
2648  * call_state_changed callback of the #LinphoneCoreVTable structure, where it will receive
2649  * a LinphoneCallIncoming event with the associated LinphoneCall object.
2650  * The application can later accept the call using this method.
2651  * @param lc the LinphoneCore object
2652  * @param call the LinphoneCall object representing the call to be answered.
2653  *
2654 **/
2655 int linphone_core_accept_call(LinphoneCore *lc, LinphoneCall *call){
2656         return linphone_core_accept_call_with_params(lc,call,NULL);
2657 }
2658
2659 /**
2660  * Accept an incoming call, with parameters.
2661  *
2662  * @ingroup call_control
2663  * Basically the application is notified of incoming calls within the
2664  * call_state_changed callback of the #LinphoneCoreVTable structure, where it will receive
2665  * a LinphoneCallIncoming event with the associated LinphoneCall object.
2666  * The application can later accept the call using
2667  * this method.
2668  * @param lc the LinphoneCore object
2669  * @param call the LinphoneCall object representing the call to be answered.
2670  * @param params the specific parameters for this call, for example whether video is accepted or not. Use NULL to use default parameters.
2671  *
2672 **/
2673 int linphone_core_accept_call_with_params(LinphoneCore *lc, LinphoneCall *call, const LinphoneCallParams *params)
2674 {
2675         LinphoneProxyConfig *cfg=NULL,*dest_proxy=NULL;
2676         const char *contact=NULL;
2677         SalOp *replaced;
2678         SalMediaDescription *new_md;
2679         bool_t was_ringing=FALSE;
2680
2681         if (call==NULL){
2682                 //if just one call is present answer the only one ...
2683                 if(linphone_core_get_calls_nb (lc) != 1)
2684                         return -1;
2685                 else
2686                         call = (LinphoneCall*)linphone_core_get_calls(lc)->data;
2687         }
2688
2689         if (call->state==LinphoneCallConnected){
2690                 /*call already accepted*/
2691                 return -1;
2692         }
2693
2694         /* check if this call is supposed to replace an already running one*/
2695         replaced=sal_call_get_replaces(call->op);
2696         if (replaced){
2697                 LinphoneCall *rc=(LinphoneCall*)sal_op_get_user_pointer (replaced);
2698                 if (rc){
2699                         ms_message("Call %p replaces call %p. This last one is going to be terminated automatically.",
2700                                    call,rc);
2701                         linphone_core_terminate_call(lc,rc);
2702                 }
2703         }
2704
2705         if (lc->current_call!=call){
2706                 linphone_core_preempt_sound_resources(lc);
2707         }
2708
2709         /*stop ringing */
2710         if (lc->ringstream!=NULL) {
2711                 ms_message("stop ringing");
2712                 ring_stop(lc->ringstream);
2713                 ms_message("ring stopped");
2714                 lc->ringstream=NULL;
2715                 was_ringing=TRUE;
2716         }
2717         if (call->ringing_beep){
2718                 linphone_core_stop_dtmf(lc);
2719                 call->ringing_beep=FALSE;
2720         }
2721
2722         linphone_core_get_default_proxy(lc,&cfg);
2723         dest_proxy=cfg;
2724         dest_proxy=linphone_core_lookup_known_proxy(lc,call->log->to);
2725
2726         if (cfg!=dest_proxy && dest_proxy!=NULL) {
2727                 ms_message("Overriding default proxy setting for this call:");
2728                 ms_message("The used identity will be %s",linphone_proxy_config_get_identity(dest_proxy));
2729         }
2730         /*try to be best-effort in giving real local or routable contact address*/
2731         contact=get_fixed_contact(lc,call,dest_proxy);
2732         if (contact)
2733                 sal_op_set_contact(call->op,contact);
2734
2735         if (call->audiostream==NULL)
2736                 linphone_call_init_media_streams(call);
2737         if (!was_ringing && call->audiostream->ticker==NULL){
2738                 audio_stream_prepare_sound(call->audiostream,lc->sound_conf.play_sndcard,lc->sound_conf.capt_sndcard);
2739         }
2740
2741         if (params){
2742                 call->params=*params;
2743                 call->camera_active=call->params.has_video;
2744                 update_local_media_description(lc,call);
2745                 sal_call_set_local_media_description(call->op,call->localdesc);
2746         }
2747         
2748         sal_call_accept(call->op);
2749         if (lc->vtable.display_status!=NULL)
2750                 lc->vtable.display_status(lc,_("Connected."));
2751         lc->current_call=call;
2752         linphone_call_set_state(call,LinphoneCallConnected,"Connected");
2753         new_md=sal_call_get_final_media_description(call->op);
2754         linphone_core_update_streams(lc, call, new_md);
2755         if (new_md){
2756                 linphone_call_set_state(call,LinphoneCallStreamsRunning,"Connected (streams running)");
2757         }else call->media_pending=TRUE;
2758
2759         ms_message("call answered.");
2760         return 0;
2761 }
2762
2763 int linphone_core_abort_call(LinphoneCore *lc, LinphoneCall *call, const char *error){
2764         sal_call_terminate(call->op);
2765
2766         /*stop ringing*/
2767         if (lc->ringstream!=NULL) {
2768                 ring_stop(lc->ringstream);
2769                 lc->ringstream=NULL;
2770         }
2771         linphone_call_stop_media_streams(call);
2772         if (lc->vtable.display_status!=NULL)
2773                 lc->vtable.display_status(lc,_("Call aborted") );
2774         linphone_call_set_state(call,LinphoneCallError,error);
2775         return 0;
2776 }
2777
2778 static void terminate_call(LinphoneCore *lc, LinphoneCall *call){
2779         if (call->state==LinphoneCallIncomingReceived){
2780                 if (call->reason!=LinphoneReasonNotAnswered)
2781                         call->reason=LinphoneReasonDeclined;
2782         }
2783         /*stop ringing*/
2784         if (lc->ringstream!=NULL) {
2785                 ring_stop(lc->ringstream);
2786                 lc->ringstream=NULL;
2787         }
2788
2789         linphone_call_stop_media_streams(call);
2790         if (lc->vtable.display_status!=NULL)
2791                 lc->vtable.display_status(lc,_("Call ended") );
2792 }
2793
2794 int linphone_core_redirect_call(LinphoneCore *lc, LinphoneCall *call, const char *redirect_uri){
2795         if (call->state==LinphoneCallIncomingReceived){
2796                 sal_call_decline(call->op,SalReasonRedirect,redirect_uri);
2797                 call->reason=LinphoneReasonDeclined;
2798                 terminate_call(lc,call);
2799                 linphone_call_set_state(call,LinphoneCallEnd,"Call terminated");
2800         }else{
2801                 ms_error("Bad state for call redirection.");
2802                 return -1;
2803     }
2804         return 0;
2805 }
2806
2807
2808 /**
2809  * Terminates a call.
2810  *
2811  * @ingroup call_control
2812  * @param lc the LinphoneCore
2813  * @param the_call the LinphoneCall object representing the call to be terminated.
2814 **/
2815 int linphone_core_terminate_call(LinphoneCore *lc, LinphoneCall *the_call)
2816 {
2817         LinphoneCall *call;
2818         if (the_call == NULL){
2819                 call = linphone_core_get_current_call(lc);
2820                 if (ms_list_size(lc->calls)==1){
2821                         call=(LinphoneCall*)lc->calls->data;
2822                 }else{
2823                         ms_warning("No unique call to terminate !");
2824                         return -1;
2825                 }
2826         }
2827         else
2828         {
2829                 call = the_call;
2830         }
2831         sal_call_terminate(call->op);
2832         terminate_call(lc,call);
2833
2834         linphone_call_set_state(call,LinphoneCallEnd,"Call terminated");
2835         return 0;
2836 }
2837
2838 /**
2839  * Terminates all the calls.
2840  *
2841  * @ingroup call_control
2842  * @param lc The LinphoneCore
2843 **/
2844 int linphone_core_terminate_all_calls(LinphoneCore *lc){
2845         MSList *calls=lc->calls;
2846         while(calls) {
2847                 LinphoneCall *c=(LinphoneCall*)calls->data;
2848                 calls=calls->next;
2849                 linphone_core_terminate_call(lc,c);
2850         }
2851         return 0;
2852 }
2853
2854 /**
2855  * Returns the current list of calls.
2856  *
2857  * Note that this list is read-only and might be changed by the core after a function call to linphone_core_iterate().
2858  * Similarly the LinphoneCall objects inside it might be destroyed without prior notice.
2859  * To hold references to LinphoneCall object into your program, you must use linphone_call_ref().
2860  *
2861  * @ingroup call_control
2862 **/
2863 const MSList *linphone_core_get_calls(LinphoneCore *lc)
2864 {
2865         return lc->calls;
2866 }
2867
2868 /**
2869  * Returns TRUE if there is a call running.
2870  *
2871  * @ingroup call_control
2872 **/
2873 bool_t linphone_core_in_call(const LinphoneCore *lc){
2874         return linphone_core_get_current_call((LinphoneCore *)lc)!=NULL || linphone_core_is_in_conference(lc);
2875 }
2876
2877 /**
2878  * Returns The _LinphoneCall struct of the current call if one is in call
2879  *
2880  * @ingroup call_control
2881 **/
2882 LinphoneCall *linphone_core_get_current_call(const LinphoneCore *lc)
2883 {
2884         return lc->current_call;
2885 }
2886
2887 /**
2888  * Pauses the call. If a music file has been setup using linphone_core_set_play_file(),
2889  * this file will be played to the remote user.
2890  *
2891  * @ingroup call_control
2892 **/
2893 int linphone_core_pause_call(LinphoneCore *lc, LinphoneCall *call)
2894 {
2895         const char *subject=NULL;
2896
2897         if (call->state!=LinphoneCallStreamsRunning && call->state!=LinphoneCallPausedByRemote){
2898                 ms_warning("Cannot pause this call, it is not active.");
2899                 return -1;
2900         }
2901         update_local_media_description(lc,call);
2902         if (call->ice_session != NULL)
2903                 linphone_core_update_local_media_description_from_ice(call->localdesc, call->ice_session);
2904         if (sal_media_description_has_dir(call->resultdesc,SalStreamSendRecv)){
2905                 sal_media_description_set_dir(call->localdesc,SalStreamSendOnly);
2906                 subject="Call on hold";
2907         }else if (sal_media_description_has_dir(call->resultdesc,SalStreamRecvOnly)){
2908                 sal_media_description_set_dir(call->localdesc,SalStreamSendOnly);
2909                 subject="Call on hold for me too";
2910         }else{
2911                 ms_error("No reason to pause this call, it is already paused or inactive.");
2912                 return -1;
2913         }
2914         sal_call_set_local_media_description(call->op,call->localdesc);
2915         if (sal_call_update(call->op,subject) != 0){
2916                 if (lc->vtable.display_warning)
2917                         lc->vtable.display_warning(lc,_("Could not pause the call"));
2918         }
2919         lc->current_call=NULL;
2920         linphone_call_set_state(call,LinphoneCallPausing,"Pausing call");
2921         if (lc->vtable.display_status)
2922                 lc->vtable.display_status(lc,_("Pausing the current call..."));
2923         if (call->audiostream || call->videostream)
2924                 linphone_call_stop_media_streams (call);
2925         return 0;
2926 }
2927
2928 /**
2929  * Pause all currently running calls.
2930 **/
2931 int linphone_core_pause_all_calls(LinphoneCore *lc){
2932         const MSList *elem;
2933         for(elem=lc->calls;elem!=NULL;elem=elem->next){
2934                 LinphoneCall *call=(LinphoneCall *)elem->data;
2935                 LinphoneCallState cs=linphone_call_get_state(call);
2936                 if (cs==LinphoneCallStreamsRunning || cs==LinphoneCallPausedByRemote){
2937                         linphone_core_pause_call(lc,call);
2938                 }
2939         }
2940         return 0;
2941 }
2942
2943 void linphone_core_preempt_sound_resources(LinphoneCore *lc){
2944         LinphoneCall *current_call;
2945         if (linphone_core_is_in_conference(lc)){
2946                 linphone_core_leave_conference(lc);
2947                 return;
2948         }
2949         current_call=linphone_core_get_current_call(lc);
2950         if(current_call != NULL){
2951                 ms_message("Pausing automatically the current call.");
2952                 linphone_core_pause_call(lc,current_call);
2953         }
2954 }
2955
2956 /**
2957  * Resumes the call.
2958  *
2959  * @ingroup call_control
2960 **/
2961 int linphone_core_resume_call(LinphoneCore *lc, LinphoneCall *the_call)
2962 {
2963         char temp[255]={0};
2964         LinphoneCall *call = the_call;
2965         const char *subject="Call resuming";
2966         
2967         if(call->state!=LinphoneCallPaused ){
2968                 ms_warning("we cannot resume a call that has not been established and paused before");
2969                 return -1;
2970         }
2971         if (call->params.in_conference==FALSE){
2972                 linphone_core_preempt_sound_resources(lc);
2973                 ms_message("Resuming call %p",call);
2974         }
2975
2976         /* Stop playing music immediately. If remote side is a conference it
2977          prevents the participants to hear it while the 200OK comes back.*/
2978         if (call->audiostream) audio_stream_play(call->audiostream, NULL);
2979
2980         update_local_media_description(lc,the_call);
2981         if (call->ice_session != NULL)
2982                 linphone_core_update_local_media_description_from_ice(call->localdesc, call->ice_session);
2983         sal_call_set_local_media_description(call->op,call->localdesc);
2984         sal_media_description_set_dir(call->localdesc,SalStreamSendRecv);
2985         if (call->params.in_conference && !call->current_params.in_conference) subject="Conference";
2986         if(sal_call_update(call->op,subject) != 0){
2987                 return -1;
2988         }
2989         linphone_call_set_state (call,LinphoneCallResuming,"Resuming");
2990         snprintf(temp,sizeof(temp)-1,"Resuming the call with %s",linphone_call_get_remote_address_as_string(call));
2991         if (lc->vtable.display_status)
2992                 lc->vtable.display_status(lc,temp);
2993         return 0;
2994 }
2995
2996 static int remote_address_compare(LinphoneCall *call, const LinphoneAddress *raddr){
2997         const LinphoneAddress *addr=linphone_call_get_remote_address (call);
2998         return !linphone_address_weak_equal (addr,raddr);
2999 }
3000
3001 /**
3002  * Get the call with the remote_address specified
3003  * @param lc
3004  * @param remote_address
3005  * @return the LinphoneCall of the call if found
3006  */
3007 LinphoneCall *linphone_core_get_call_by_remote_address(LinphoneCore *lc, const char *remote_address){
3008         LinphoneAddress *raddr=linphone_address_new(remote_address);
3009         MSList *elem=ms_list_find_custom(lc->calls,(int (*)(const void*,const void *))remote_address_compare,raddr);
3010         if (elem) return (LinphoneCall*) elem->data;
3011         return NULL;
3012 }
3013
3014 int linphone_core_send_publish(LinphoneCore *lc,
3015                                LinphoneOnlineStatus presence_mode)
3016 {
3017         const MSList *elem;
3018         for (elem=linphone_core_get_proxy_config_list(lc);elem!=NULL;elem=ms_list_next(elem)){
3019                 LinphoneProxyConfig *cfg=(LinphoneProxyConfig*)elem->data;
3020                 if (cfg->publish) linphone_proxy_config_send_publish(cfg,presence_mode);
3021         }
3022         return 0;
3023 }
3024
3025 /**
3026  * Set the incoming call timeout in seconds.
3027  *
3028  * @ingroup call_control
3029  * If an incoming call isn't answered for this timeout period, it is
3030  * automatically declined.
3031 **/
3032 void linphone_core_set_inc_timeout(LinphoneCore *lc, int seconds){
3033         lc->sip_conf.inc_timeout=seconds;
3034 }
3035
3036 /**
3037  * Returns the incoming call timeout
3038  *
3039  * @ingroup call_control
3040  * See linphone_core_set_inc_timeout() for details.
3041 **/
3042 int linphone_core_get_inc_timeout(LinphoneCore *lc){
3043         return lc->sip_conf.inc_timeout;
3044 }
3045
3046 void linphone_core_set_presence_info(LinphoneCore *lc,int minutes_away,
3047                                                                                                         const char *contact,
3048                                                                                                         LinphoneOnlineStatus presence_mode)
3049 {
3050         if (minutes_away>0) lc->minutes_away=minutes_away;
3051
3052         if (lc->alt_contact!=NULL) {
3053                 ms_free(lc->alt_contact);
3054                 lc->alt_contact=NULL;
3055         }
3056         if (contact) lc->alt_contact=ms_strdup(contact);
3057         if (lc->presence_mode!=presence_mode){
3058                 linphone_core_notify_all_friends(lc,presence_mode);
3059                 /*
3060                    Improve the use of all LINPHONE_STATUS available.
3061                    !TODO Do not mix "presence status" with "answer status code"..
3062                    Use correct parameter to follow sip_if_match/sip_etag.
3063                  */
3064                 linphone_core_send_publish(lc,presence_mode);
3065         }
3066         lc->presence_mode=presence_mode;
3067 }
3068
3069 LinphoneOnlineStatus linphone_core_get_presence_info(const LinphoneCore *lc){
3070         return lc->presence_mode;
3071 }
3072
3073 /**
3074  * Get playback sound level in 0-100 scale.
3075  *
3076  * @ingroup media_parameters
3077 **/
3078 int linphone_core_get_play_level(LinphoneCore *lc)
3079 {
3080         return lc->sound_conf.play_lev;
3081 }
3082
3083 /**
3084  * Get ring sound level in 0-100 scale
3085  *
3086  * @ingroup media_parameters
3087 **/
3088 int linphone_core_get_ring_level(LinphoneCore *lc)
3089 {
3090         return lc->sound_conf.ring_lev;
3091 }
3092
3093 /**
3094  * Get sound capture level in 0-100 scale
3095  *
3096  * @ingroup media_parameters
3097 **/
3098 int linphone_core_get_rec_level(LinphoneCore *lc){
3099         return lc->sound_conf.rec_lev;
3100 }
3101
3102 /**
3103  * Set sound ring level in 0-100 scale
3104  *
3105  * @ingroup media_parameters
3106 **/
3107 void linphone_core_set_ring_level(LinphoneCore *lc, int level){
3108         MSSndCard *sndcard;
3109         lc->sound_conf.ring_lev=level;
3110         sndcard=lc->sound_conf.ring_sndcard;
3111         if (sndcard) ms_snd_card_set_level(sndcard,MS_SND_CARD_PLAYBACK,level);
3112 }
3113
3114 /**
3115  * Allow to control play level before entering sound card:  gain in db
3116  *
3117  * @ingroup media_parameters
3118 **/
3119 void linphone_core_set_playback_gain_db (LinphoneCore *lc, float gaindb){
3120         float gain=gaindb;
3121         LinphoneCall *call=linphone_core_get_current_call (lc);
3122         AudioStream *st;
3123
3124         lc->sound_conf.soft_play_lev=gaindb;
3125
3126         if (call==NULL || (st=call->audiostream)==NULL){
3127                 ms_message("linphone_core_set_playback_gain_db(): no active call.");
3128                 return;
3129         }
3130         if (st->volrecv){
3131                 ms_filter_call_method(st->volrecv,MS_VOLUME_SET_DB_GAIN,&gain);
3132         }else ms_warning("Could not apply gain: gain control wasn't activated.");
3133 }
3134
3135 /**
3136  * Get playback gain in db before entering  sound card.
3137  *
3138  * @ingroup media_parameters
3139 **/
3140 float linphone_core_get_playback_gain_db(LinphoneCore *lc) {
3141         return lc->sound_conf.soft_play_lev;
3142 }
3143
3144 /**
3145  * Set sound playback level in 0-100 scale
3146  *
3147  * @ingroup media_parameters
3148 **/
3149 void linphone_core_set_play_level(LinphoneCore *lc, int level){
3150         MSSndCard *sndcard;
3151         lc->sound_conf.play_lev=level;
3152         sndcard=lc->sound_conf.play_sndcard;
3153         if (sndcard) ms_snd_card_set_level(sndcard,MS_SND_CARD_PLAYBACK,level);
3154 }
3155
3156 /**
3157  * Set sound capture level in 0-100 scale
3158  *
3159  * @ingroup media_parameters
3160 **/
3161 void linphone_core_set_rec_level(LinphoneCore *lc, int level)
3162 {
3163         MSSndCard *sndcard;
3164         lc->sound_conf.rec_lev=level;
3165         sndcard=lc->sound_conf.capt_sndcard;
3166         if (sndcard) ms_snd_card_set_level(sndcard,MS_SND_CARD_CAPTURE,level);
3167 }
3168
3169 static MSSndCard *get_card_from_string_id(const char *devid, unsigned int cap){
3170         MSSndCard *sndcard=NULL;
3171         if (devid!=NULL){
3172                 sndcard=ms_snd_card_manager_get_card(ms_snd_card_manager_get(),devid);
3173                 if (sndcard!=NULL &&
3174                         (ms_snd_card_get_capabilities(sndcard) & cap)==0 ){
3175                         ms_warning("%s card does not have the %s capability, ignoring.",
3176                                 devid,
3177                                 cap==MS_SND_CARD_CAP_CAPTURE ? "capture" : "playback");
3178                         sndcard=NULL;
3179                 }
3180         }
3181         if (sndcard==NULL) {
3182                 /* get a card that has read+write capabilities */
3183                 sndcard=ms_snd_card_manager_get_default_card(ms_snd_card_manager_get());
3184                 /* otherwise refine to the first card having the right capability*/
3185                 if (sndcard==NULL){
3186                         const MSList *elem=ms_snd_card_manager_get_list(ms_snd_card_manager_get());
3187                         for(;elem!=NULL;elem=elem->next){
3188                                 sndcard=(MSSndCard*)elem->data;
3189                                 if (ms_snd_card_get_capabilities(sndcard) & cap) break;
3190                         }
3191                 }
3192                 if (sndcard==NULL){/*looks like a bug! take the first one !*/
3193                         const MSList *elem=ms_snd_card_manager_get_list(ms_snd_card_manager_get());
3194                         if (elem) sndcard=(MSSndCard*)elem->data;
3195         }
3196         }
3197         if (sndcard==NULL) ms_error("Could not find a suitable soundcard !");
3198         return sndcard;
3199 }
3200
3201 /**
3202  * Returns true if the specified sound device can capture sound.
3203  *
3204  * @ingroup media_parameters
3205  * @param lc The LinphoneCore object
3206  * @param devid the device name as returned by linphone_core_get_sound_devices()
3207 **/
3208 bool_t linphone_core_sound_device_can_capture(LinphoneCore *lc, const char *devid){
3209         MSSndCard *sndcard;
3210         sndcard=ms_snd_card_manager_get_card(ms_snd_card_manager_get(),devid);
3211         if (sndcard!=NULL && (ms_snd_card_get_capabilities(sndcard) & MS_SND_CARD_CAP_CAPTURE)) return TRUE;
3212         return FALSE;
3213 }
3214
3215 /**
3216  * Returns true if the specified sound device can play sound.
3217  *
3218  * @ingroup media_parameters
3219  * @param lc The LinphoneCore object
3220  * @param devid the device name as returned by linphone_core_get_sound_devices()
3221 **/
3222 bool_t linphone_core_sound_device_can_playback(LinphoneCore *lc, const char *devid){
3223         MSSndCard *sndcard;
3224         sndcard=ms_snd_card_manager_get_card(ms_snd_card_manager_get(),devid);
3225         if (sndcard!=NULL && (ms_snd_card_get_capabilities(sndcard) & MS_SND_CARD_CAP_PLAYBACK)) return TRUE;
3226         return FALSE;
3227 }
3228
3229 /**
3230  * Sets the sound device used for ringing.
3231  *
3232  * @ingroup media_parameters
3233  * @param lc The LinphoneCore object
3234  * @param devid the device name as returned by linphone_core_get_sound_devices()
3235 **/
3236 int linphone_core_set_ringer_device(LinphoneCore *lc, const char * devid){
3237         MSSndCard *card=get_card_from_string_id(devid,MS_SND_CARD_CAP_PLAYBACK);
3238         lc->sound_conf.ring_sndcard=card;
3239         if (card && linphone_core_ready(lc))
3240                 lp_config_set_string(lc->config,"sound","ringer_dev_id",ms_snd_card_get_string_id(card));
3241         return 0;
3242 }
3243
3244 /**
3245  * Sets the sound device used for playback.
3246  *
3247  * @ingroup media_parameters
3248  * @param lc The LinphoneCore object
3249  * @param devid the device name as returned by linphone_core_get_sound_devices()
3250 **/
3251 int linphone_core_set_playback_device(LinphoneCore *lc, const char * devid){
3252         MSSndCard *card=get_card_from_string_id(devid,MS_SND_CARD_CAP_PLAYBACK);
3253         lc->sound_conf.play_sndcard=card;
3254         if (card &&  linphone_core_ready(lc))
3255                 lp_config_set_string(lc->config,"sound","playback_dev_id",ms_snd_card_get_string_id(card));
3256         return 0;
3257 }
3258
3259 /**
3260  * Sets the sound device used for capture.
3261  *
3262  * @ingroup media_parameters
3263  * @param lc The LinphoneCore object
3264  * @param devid the device name as returned by linphone_core_get_sound_devices()
3265 **/
3266 int linphone_core_set_capture_device(LinphoneCore *lc, const char * devid){
3267         MSSndCard *card=get_card_from_string_id(devid,MS_SND_CARD_CAP_CAPTURE);
3268         lc->sound_conf.capt_sndcard=card;
3269         if (card &&  linphone_core_ready(lc))
3270                 lp_config_set_string(lc->config,"sound","capture_dev_id",ms_snd_card_get_string_id(card));
3271         return 0;
3272 }
3273
3274 /**
3275  * Returns the name of the currently assigned sound device for ringing.
3276  *
3277  * @ingroup media_parameters
3278  * @param lc The LinphoneCore object
3279 **/
3280 const char * linphone_core_get_ringer_device(LinphoneCore *lc)
3281 {
3282         if (lc->sound_conf.ring_sndcard) return ms_snd_card_get_string_id(lc->sound_conf.ring_sndcard);
3283         return NULL;
3284 }
3285
3286 /**
3287  * Returns the name of the currently assigned sound device for playback.
3288  *
3289  * @ingroup media_parameters
3290  * @param lc The LinphoneCore object
3291 **/
3292 const char * linphone_core_get_playback_device(LinphoneCore *lc)
3293 {
3294         return lc->sound_conf.play_sndcard ? ms_snd_card_get_string_id(lc->sound_conf.play_sndcard) : NULL;
3295 }
3296
3297 /**
3298  * Returns the name of the currently assigned sound device for capture.
3299  *
3300  * @ingroup media_parameters
3301  * @param lc The LinphoneCore object
3302 **/
3303 const char * linphone_core_get_capture_device(LinphoneCore *lc)
3304 {
3305         return lc->sound_conf.capt_sndcard ? ms_snd_card_get_string_id(lc->sound_conf.capt_sndcard) : NULL;
3306 }
3307
3308 /**
3309  * Returns an unmodifiable array of available sound devices.
3310  *
3311  * The array is NULL terminated.
3312  *
3313  * @ingroup media_parameters
3314  * @param lc The LinphoneCore object
3315 **/
3316 const char**  linphone_core_get_sound_devices(LinphoneCore *lc){
3317         return lc->sound_conf.cards;
3318 }
3319
3320 /**
3321  * Returns an unmodifiable array of available video capture devices.
3322  *
3323  * @ingroup media_parameters
3324  * The array is NULL terminated.
3325 **/
3326 const char**  linphone_core_get_video_devices(const LinphoneCore *lc){
3327         return lc->video_conf.cams;
3328 }
3329
3330 /**
3331  * Update detection of sound devices.
3332  * 
3333  * Use this function when the application is notified of USB plug events, so that
3334  * list of available hardwares for sound playback and capture is updated.
3335  **/
3336 void linphone_core_reload_sound_devices(LinphoneCore *lc){
3337         const char *ringer,*playback,*capture;
3338         ringer=linphone_core_get_ringer_device(lc);
3339         playback=linphone_core_get_playback_device(lc);
3340         capture=linphone_core_get_capture_device(lc);
3341         ms_snd_card_manager_reload(ms_snd_card_manager_get());
3342         build_sound_devices_table(lc);
3343         linphone_core_set_ringer_device(lc,ringer);
3344         linphone_core_set_playback_device(lc,playback);
3345         linphone_core_set_capture_device(lc,capture);
3346 }
3347
3348 /**
3349  * Update detection of camera devices.
3350  * 
3351  * Use this function when the application is notified of USB plug events, so that
3352  * list of available hardwares for video capture is updated.
3353  **/
3354 void linphone_core_reload_video_devices(LinphoneCore *lc){
3355         const char *devid;
3356         devid=linphone_core_get_video_device(lc);
3357         ms_web_cam_manager_reload(ms_web_cam_manager_get());
3358         build_video_devices_table(lc);
3359         linphone_core_set_video_device(lc,devid);
3360 }
3361
3362 char linphone_core_get_sound_source(LinphoneCore *lc)
3363 {
3364         return lc->sound_conf.source;
3365 }
3366
3367 void linphone_core_set_sound_source(LinphoneCore *lc, char source)
3368 {
3369         MSSndCard *sndcard=lc->sound_conf.capt_sndcard;
3370         lc->sound_conf.source=source;
3371         if (!sndcard) return;
3372         switch(source){
3373                 case 'm':
3374                         ms_snd_card_set_capture(sndcard,MS_SND_CARD_MIC);
3375                         break;
3376                 case 'l':
3377                         ms_snd_card_set_capture(sndcard,MS_SND_CARD_LINE);
3378                         break;
3379         }
3380
3381 }
3382
3383
3384 /**
3385  * Sets the path to a wav file used for ringing.
3386  *
3387  * @param path The file must be a wav 16bit linear. Local ring is disabled if null
3388  * @param lc The LinphoneCore object
3389  *
3390  * @ingroup media_parameters
3391 **/
3392 void linphone_core_set_ring(LinphoneCore *lc,const char *path){
3393         if (lc->sound_conf.local_ring!=0){
3394                 ms_free(lc->sound_conf.local_ring);
3395                 lc->sound_conf.local_ring=NULL;
3396         }
3397         if (path)
3398                 lc->sound_conf.local_ring=ms_strdup(path);
3399         if ( linphone_core_ready(lc) && lc->sound_conf.local_ring)
3400                 lp_config_set_string(lc->config,"sound","local_ring",lc->sound_conf.local_ring);
3401 }
3402
3403 /**
3404  * Returns the path to the wav file used for ringing.
3405  *
3406  * @param lc The LinphoneCore object
3407  * @ingroup media_parameters
3408 **/
3409 const char *linphone_core_get_ring(const LinphoneCore *lc){
3410         return lc->sound_conf.local_ring;
3411 }
3412
3413 /**
3414  * Sets the path to a file or folder containing trusted root CAs (PEM format)
3415  *
3416  * @param path
3417  * @param lc The LinphoneCore object
3418  *
3419  * @ingroup media_parameters
3420 **/
3421 void linphone_core_set_root_ca(LinphoneCore *lc,const char *path){
3422         sal_set_root_ca(lc->sal, path);
3423 }
3424
3425 /**
3426  * Specify whether the tls server certificate must be verified when connecting to a SIP/TLS server.
3427 **/
3428 void linphone_core_verify_server_certificates(LinphoneCore *lc, bool_t yesno){
3429         sal_verify_server_certificates(lc->sal,yesno);
3430 }
3431
3432 static void notify_end_of_ring(void *ud, MSFilter *f, unsigned int event, void *arg){
3433         LinphoneCore *lc=(LinphoneCore*)ud;
3434         lc->preview_finished=1;
3435 }
3436
3437 int linphone_core_preview_ring(LinphoneCore *lc, const char *ring,LinphoneCoreCbFunc func,void * userdata)
3438 {
3439         if (lc->ringstream!=0){
3440                 ms_warning("Cannot start ring now,there's already a ring being played");
3441                 return -1;
3442         }
3443         lc_callback_obj_init(&lc->preview_finished_cb,func,userdata);
3444         lc->preview_finished=0;
3445         if (lc->sound_conf.ring_sndcard!=NULL){
3446                 MSSndCard *ringcard=lc->sound_conf.lsd_card ? lc->sound_conf.lsd_card : lc->sound_conf.ring_sndcard;
3447                 lc->ringstream=ring_start_with_cb(ring,2000,ringcard,notify_end_of_ring,(void *)lc);
3448         }
3449         return 0;
3450 }
3451
3452 /**
3453  * Sets the path to a wav file used for ringing back.
3454  *
3455  * Ringback means the ring that is heard when it's ringing at the remote party.
3456  * The file must be a wav 16bit linear.
3457  *
3458  * @ingroup media_parameters
3459 **/
3460 void linphone_core_set_ringback(LinphoneCore *lc, const char *path){
3461         if (lc->sound_conf.remote_ring!=0){
3462                 ms_free(lc->sound_conf.remote_ring);
3463         }
3464         lc->sound_conf.remote_ring=ms_strdup(path);
3465 }
3466
3467 /**
3468  * Returns the path to the wav file used for ringing back.
3469  *
3470  * @ingroup media_parameters
3471 **/
3472 const char * linphone_core_get_ringback(const LinphoneCore *lc){
3473         return lc->sound_conf.remote_ring;
3474 }
3475
3476 /**
3477  * Enables or disable echo cancellation. Value is saved an used for subsequent calls
3478  *
3479  * @ingroup media_parameters
3480 **/
3481 void linphone_core_enable_echo_cancellation(LinphoneCore *lc, bool_t val){
3482         lc->sound_conf.ec=val;
3483         if ( linphone_core_ready(lc))
3484                 lp_config_set_int(lc->config,"sound","echocancellation",val);
3485 }
3486
3487
3488 /**
3489  * Returns TRUE if echo cancellation is enabled.
3490  *
3491  * @ingroup media_parameters
3492 **/
3493 bool_t linphone_core_echo_cancellation_enabled(LinphoneCore *lc){
3494         return lc->sound_conf.ec;
3495 }
3496
3497 void linphone_core_enable_echo_limiter(LinphoneCore *lc, bool_t val){
3498         lc->sound_conf.ea=val;
3499 }
3500
3501 bool_t linphone_core_echo_limiter_enabled(const LinphoneCore *lc){
3502         return lc->sound_conf.ea;
3503 }
3504
3505 /**
3506  * Mutes or unmutes the local microphone.
3507  *
3508  * @ingroup media_parameters
3509 **/
3510 void linphone_core_mute_mic(LinphoneCore *lc, bool_t val){
3511         LinphoneCall *call=linphone_core_get_current_call(lc);
3512         AudioStream *st=NULL;
3513         if (linphone_core_is_in_conference(lc)){
3514                 lc->conf_ctx.local_muted=val;
3515                 st=lc->conf_ctx.local_participant;
3516         }else if (call==NULL){
3517                 ms_warning("linphone_core_mute_mic(): No current call !");
3518                 return;
3519         }else{
3520                 st=call->audiostream;
3521                 call->audio_muted=val;
3522         }
3523         if (st!=NULL){
3524                 audio_stream_set_mic_gain(st,
3525                         (val==TRUE) ? 0 : lp_config_get_float(lc->config,"sound","mic_gain",1));
3526                 if ( linphone_core_get_rtp_no_xmit_on_audio_mute(lc) ){
3527                         audio_stream_mute_rtp(st,val);
3528                 }
3529                 
3530         }
3531 }
3532 /**
3533  * Returns whether microphone is muted.
3534 **/
3535 bool_t linphone_core_is_mic_muted(LinphoneCore *lc) {
3536         LinphoneCall *call=linphone_core_get_current_call(lc);
3537         if (linphone_core_is_in_conference(lc)){
3538                 return lc->conf_ctx.local_muted;
3539         }else if (call==NULL){
3540                 ms_warning("linphone_core_is_mic_muted(): No current call !");
3541                 return FALSE;
3542         }
3543         return call->audio_muted;
3544 }
3545
3546 // returns rtp transmission status for an active stream
3547 // if audio is muted and config parameter rtp_no_xmit_on_audio_mute
3548 // was set on then rtp transmission is also muted
3549 bool_t linphone_core_is_rtp_muted(LinphoneCore *lc){
3550         LinphoneCall *call=linphone_core_get_current_call(lc);
3551         if (call==NULL){
3552                 ms_warning("linphone_core_is_mic_muted(): No current call !");
3553                 return FALSE;
3554         }
3555         if( linphone_core_get_rtp_no_xmit_on_audio_mute(lc)){
3556                 return call->audio_muted;
3557         }
3558         return FALSE;
3559 }
3560
3561 void linphone_core_enable_agc(LinphoneCore *lc, bool_t val){
3562         lc->sound_conf.agc=val;
3563 }
3564
3565 bool_t linphone_core_agc_enabled(const LinphoneCore *lc){
3566         return lc->sound_conf.agc;
3567 }
3568
3569 /**
3570  * Send the specified dtmf.
3571  *
3572  * @ingroup media_parameters
3573  * This function only works during calls. The dtmf is automatically played to the user.
3574  * @param lc The LinphoneCore object
3575  * @param dtmf The dtmf name specified as a char, such as '0', '#' etc...
3576  *
3577 **/
3578 void linphone_core_send_dtmf(LinphoneCore *lc, char dtmf)
3579 {
3580         LinphoneCall *call=linphone_core_get_current_call(lc);
3581         if (call==NULL){
3582                 ms_warning("linphone_core_send_dtmf(): no active call");
3583                 return;
3584         }
3585         /*By default we send DTMF RFC2833 if we do not have enabled SIP_INFO but we can also send RFC2833 and SIP_INFO*/
3586         if (linphone_core_get_use_rfc2833_for_dtmf(lc)!=0 || linphone_core_get_use_info_for_dtmf(lc)==0)
3587         {
3588                 /* In Band DTMF */
3589                 if (call->audiostream!=NULL){
3590                         audio_stream_send_dtmf(call->audiostream,dtmf);
3591                 }
3592                 else
3593                 {
3594                         ms_error("we cannot send RFC2833 dtmf when we are not in communication");
3595                 }
3596         }
3597         if (linphone_core_get_use_info_for_dtmf(lc)!=0){
3598                 /* Out of Band DTMF (use INFO method) */
3599                 sal_call_send_dtmf(call->op,dtmf);
3600         }
3601 }
3602
3603 void linphone_core_set_stun_server(LinphoneCore *lc, const char *server){
3604         if (lc->net_conf.stun_server!=NULL)
3605                 ms_free(lc->net_conf.stun_server);
3606         if (server)
3607                 lc->net_conf.stun_server=ms_strdup(server);
3608         else lc->net_conf.stun_server=NULL;
3609 }
3610
3611 const char * linphone_core_get_stun_server(const LinphoneCore *lc){
3612         return lc->net_conf.stun_server;
3613 }
3614
3615 const char * linphone_core_get_relay_addr(const LinphoneCore *lc){
3616         return lc->net_conf.relay;
3617 }
3618
3619 int linphone_core_set_relay_addr(LinphoneCore *lc, const char *addr){
3620         if (lc->net_conf.relay!=NULL){
3621                 ms_free(lc->net_conf.relay);
3622                 lc->net_conf.relay=NULL;
3623         }
3624         if (addr){
3625                 lc->net_conf.relay=ms_strdup(addr);
3626         }
3627         return 0;
3628 }
3629
3630 void linphone_core_set_nat_address(LinphoneCore *lc, const char *addr)
3631 {
3632         if (lc->net_conf.nat_address!=NULL){
3633                 ms_free(lc->net_conf.nat_address);
3634         }
3635         if (addr!=NULL) lc->net_conf.nat_address=ms_strdup(addr);
3636         else lc->net_conf.nat_address=NULL;
3637         if (lc->sip_conf.contact) update_primary_contact(lc);
3638 }
3639
3640 const char *linphone_core_get_nat_address(const LinphoneCore *lc) {
3641         return lc->net_conf.nat_address;
3642 }
3643
3644 const char *linphone_core_get_nat_address_resolved(LinphoneCore *lc)
3645 {
3646         struct sockaddr_storage ss;
3647         socklen_t ss_len;
3648         int error;
3649         char ipstring [INET6_ADDRSTRLEN];
3650
3651         if (lc->net_conf.nat_address==NULL) return NULL;
3652         
3653         if (parse_hostname_to_addr (lc->net_conf.nat_address, &ss, &ss_len)<0) {
3654                 return lc->net_conf.nat_address;
3655         }
3656
3657         error = getnameinfo((struct sockaddr *)&ss, ss_len,
3658                 ipstring, sizeof(ipstring), NULL, 0, NI_NUMERICHOST);
3659         if (error) {
3660                 return lc->net_conf.nat_address;
3661         }
3662
3663         if (lc->net_conf.nat_address_ip!=NULL){
3664                 ms_free(lc->net_conf.nat_address_ip);
3665         }
3666         lc->net_conf.nat_address_ip = ms_strdup (ipstring);
3667         return lc->net_conf.nat_address_ip;
3668 }
3669
3670 void linphone_core_set_firewall_policy(LinphoneCore *lc, LinphoneFirewallPolicy pol){
3671         lc->net_conf.firewall_policy=pol;
3672         if (lc->sip_conf.contact) update_primary_contact(lc);
3673 }
3674
3675 LinphoneFirewallPolicy linphone_core_get_firewall_policy(const LinphoneCore *lc){
3676         return lc->net_conf.firewall_policy;
3677 }
3678
3679 /**
3680  * Get the list of call logs (past calls).
3681  *
3682  * @ingroup call_logs
3683 **/
3684 const MSList * linphone_core_get_call_logs(LinphoneCore *lc){
3685         return lc->call_logs;
3686 }
3687
3688 /**
3689  * Erase the call log.
3690  *
3691  * @ingroup call_logs
3692 **/
3693 void linphone_core_clear_call_logs(LinphoneCore *lc){
3694         lc->missed_calls=0;
3695         ms_list_for_each(lc->call_logs,(void (*)(void*))linphone_call_log_destroy);
3696         lc->call_logs=ms_list_free(lc->call_logs);
3697         call_logs_write_to_config_file(lc);
3698 }
3699
3700 /**
3701  * Returns number of missed calls.
3702  * Once checked, this counter can be reset with linphone_core_reset_missed_calls_count().
3703 **/
3704 int linphone_core_get_missed_calls_count(LinphoneCore *lc) {
3705         return lc->missed_calls;
3706 }
3707
3708 /**
3709  * Resets the counter of missed calls.
3710 **/
3711 void linphone_core_reset_missed_calls_count(LinphoneCore *lc) {
3712         lc->missed_calls=0;
3713 }
3714
3715 /**
3716  * Remove a specific call log from call history list.
3717  * This function destroys the call log object. It must not be accessed anymore by the application after calling this function.
3718  * @param lc the linphone core object
3719  * @param a LinphoneCallLog object.
3720 **/
3721 void linphone_core_remove_call_log(LinphoneCore *lc, LinphoneCallLog *cl){
3722         lc->call_logs = ms_list_remove(lc->call_logs, cl);
3723         call_logs_write_to_config_file(lc);
3724         linphone_call_log_destroy(cl);
3725 }
3726
3727 static void toggle_video_preview(LinphoneCore *lc, bool_t val){
3728 #ifdef VIDEO_ENABLED
3729         if (val){
3730                 if (lc->previewstream==NULL){
3731                         lc->previewstream=video_preview_new();
3732                         video_preview_set_size(lc->previewstream,lc->video_conf.vsize);
3733                         if (lc->video_conf.displaytype)
3734                                 video_preview_set_display_filter_name(lc->previewstream,lc->video_conf.displaytype);
3735                         if (lc->preview_window_id!=0)
3736                                 video_preview_set_native_window_id(lc->previewstream,lc->preview_window_id);
3737                         video_preview_start(lc->previewstream,lc->video_conf.device);
3738                 }
3739         }else{
3740                 if (lc->previewstream!=NULL){
3741                         video_preview_stop(lc->previewstream);
3742                         lc->previewstream=NULL;
3743                 }
3744         }
3745 #endif
3746 }
3747
3748 /**
3749  * Enables video globally.
3750  *
3751  * @ingroup media_parameters
3752  * This function does not have any effect during calls. It just indicates LinphoneCore to
3753  * initiate future calls with video or not. The two boolean parameters indicate in which
3754  * direction video is enabled. Setting both to false disables video entirely.
3755  *
3756  * @param lc The LinphoneCore object
3757  * @param vcap_enabled indicates whether video capture is enabled
3758  * @param display_enabled indicates whether video display should be shown
3759  *
3760 **/
3761 void linphone_core_enable_video(LinphoneCore *lc, bool_t vcap_enabled, bool_t display_enabled){
3762 #ifndef VIDEO_ENABLED
3763         if (vcap_enabled || display_enabled)
3764                 ms_warning("This version of linphone was built without video support.");
3765 #endif
3766         lc->video_conf.capture=vcap_enabled;
3767         lc->video_conf.display=display_enabled;
3768
3769         /* need to re-apply network bandwidth settings*/
3770         linphone_core_set_download_bandwidth(lc,
3771                 linphone_core_get_download_bandwidth(lc));
3772         linphone_core_set_upload_bandwidth(lc,
3773                 linphone_core_get_upload_bandwidth(lc));
3774 }
3775
3776 bool_t linphone_core_video_supported(LinphoneCore *lc){
3777 #ifdef VIDEO_ENABLED
3778         return TRUE;
3779 #else
3780         return FALSE;
3781 #endif
3782 }
3783
3784 /**
3785  * Returns TRUE if video is enabled, FALSE otherwise.
3786  * @ingroup media_parameters
3787 **/
3788 bool_t linphone_core_video_enabled(LinphoneCore *lc){
3789         return (lc->video_conf.display || lc->video_conf.capture);
3790 }
3791
3792 /**
3793  * Sets the default policy for video.
3794  * This policy defines whether:
3795  * - video shall be initiated by default for outgoing calls
3796  * - video shall be accepter by default for incoming calls
3797  * @ingroup media_parameters
3798 **/
3799 void linphone_core_set_video_policy(LinphoneCore *lc, const LinphoneVideoPolicy *policy){
3800         lc->video_policy=*policy;
3801         if (linphone_core_ready(lc)){
3802                 lp_config_set_int(lc->config,"video","automatically_initiate",policy->automatically_initiate);
3803                 lp_config_set_int(lc->config,"video","automatically_accept",policy->automatically_accept);
3804         }
3805 }
3806
3807 /**
3808  * Get the default policy for video.
3809  * See linphone_core_set_video_policy() for more details.
3810  * @ingroup media_parameters
3811 **/
3812 const LinphoneVideoPolicy *linphone_core_get_video_policy(LinphoneCore *lc){
3813         return &lc->video_policy;
3814 }
3815
3816 /**
3817  * Controls video preview enablement.
3818  *
3819  * @ingroup media_parameters
3820  * Video preview refers to the action of displaying the local webcam image
3821  * to the user while not in call.
3822 **/
3823 void linphone_core_enable_video_preview(LinphoneCore *lc, bool_t val){
3824         lc->video_conf.show_local=val;
3825 }
3826
3827 /**
3828  * Returns TRUE if video previewing is enabled.
3829  * @ingroup media_parameters
3830 **/
3831 bool_t linphone_core_video_preview_enabled(const LinphoneCore *lc){
3832         return lc->video_conf.show_local;
3833 }
3834
3835 /**
3836  * Enables or disable self view during calls.
3837  *
3838  * @ingroup media_parameters
3839  * Self-view refers to having local webcam image inserted in corner
3840  * of the video window during calls.
3841  * This function works at any time, including during calls.
3842 **/
3843 void linphone_core_enable_self_view(LinphoneCore *lc, bool_t val){
3844 #ifdef VIDEO_ENABLED
3845         LinphoneCall *call=linphone_core_get_current_call (lc);
3846         lc->video_conf.selfview=val;
3847         if (call && call->videostream){
3848                 video_stream_enable_self_view(call->videostream,val);
3849         }
3850 #endif
3851 }
3852
3853 /**
3854  * Returns TRUE if self-view is enabled, FALSE otherwise.
3855  *
3856  * @ingroup media_parameters
3857  *
3858  * Refer to linphone_core_enable_self_view() for details.
3859 **/
3860 bool_t linphone_core_self_view_enabled(const LinphoneCore *lc){
3861         return lc->video_conf.selfview;
3862 }
3863
3864 /**
3865  * Sets the active video device.
3866  *
3867  * @ingroup media_parameters
3868  * @param lc The LinphoneCore object
3869  * @param id the name of the video device as returned by linphone_core_get_video_devices()
3870 **/
3871 int linphone_core_set_video_device(LinphoneCore *lc, const char *id){
3872         MSWebCam *olddev=lc->video_conf.device;
3873         const char *vd;
3874         if (id!=NULL){
3875                 lc->video_conf.device=ms_web_cam_manager_get_cam(ms_web_cam_manager_get(),id);
3876                 if (lc->video_conf.device==NULL){
3877                         ms_warning("Could not found video device %s",id);
3878                 }
3879         }
3880         if (lc->video_conf.device==NULL)
3881                 lc->video_conf.device=ms_web_cam_manager_get_default_cam(ms_web_cam_manager_get());
3882         if (olddev!=NULL && olddev!=lc->video_conf.device){
3883                 toggle_video_preview(lc,FALSE);/*restart the video local preview*/
3884         }
3885         if ( linphone_core_ready(lc) && lc->video_conf.device){
3886                 vd=ms_web_cam_get_string_id(lc->video_conf.device);
3887                 if (vd && strstr(vd,"Static picture")!=NULL){
3888                         vd=NULL;
3889                 }
3890                 lp_config_set_string(lc->config,"video","device",vd);
3891         }
3892         return 0;
3893 }
3894
3895 /**
3896  * Returns the name of the currently active video device.
3897  *
3898  * @param lc The LinphoneCore object
3899  * @ingroup media_parameters
3900 **/
3901 const char *linphone_core_get_video_device(const LinphoneCore *lc){
3902         if (lc->video_conf.device) return ms_web_cam_get_string_id(lc->video_conf.device);
3903         return NULL;
3904 }
3905
3906 #ifdef VIDEO_ENABLED
3907 static VideoStream * get_active_video_stream(LinphoneCore *lc){
3908         VideoStream *vs = NULL;
3909         LinphoneCall *call=linphone_core_get_current_call (lc);
3910         /* Select the video stream from the call in the first place */
3911         if (call && call->videostream) {
3912                 vs = call->videostream;
3913         }
3914         /* If not in call, select the video stream from the preview */
3915         if (vs == NULL && lc->previewstream) {
3916                 vs = lc->previewstream;
3917         }
3918         return vs;
3919 }
3920 #endif
3921
3922 int linphone_core_set_static_picture(LinphoneCore *lc, const char *path) {
3923 #ifdef VIDEO_ENABLED
3924         VideoStream *vs=get_active_video_stream(lc);
3925         /* If we have a video stream (either preview, either from call), we
3926                  have a source and it is using the static picture filter, then
3927                  force the filter to use that picture. */
3928         if (vs && vs->source) {
3929                 if (ms_filter_get_id(vs->source) == MS_STATIC_IMAGE_ID) {
3930                         ms_filter_call_method(vs->source, MS_STATIC_IMAGE_SET_IMAGE,
3931                                                                                                                 (void *)path);
3932                 }
3933         }
3934         /* Tell the static image filter to use that image from now on so
3935                  that the image will be used next time it has to be read */
3936         ms_static_image_set_default_image(path);
3937 #else
3938         ms_warning("Video support not compiled.");
3939 #endif
3940         return 0;
3941 }
3942
3943 int linphone_core_set_static_picture_fps(LinphoneCore *lc, float fps) {
3944 #ifdef VIDEO_ENABLED
3945         VideoStream *vs = NULL;
3946
3947         vs=get_active_video_stream(lc);
3948
3949         /* If we have a video stream (either preview, either from call), we
3950                  have a source and it is using the static picture filter, then
3951                  force the filter to use that picture. */
3952         if (vs && vs->source) {
3953                 if (ms_filter_get_id(vs->source) == MS_STATIC_IMAGE_ID) {
3954                         ms_filter_call_method(vs->source, MS_FILTER_SET_FPS,(void *)&fps);
3955                 }
3956         }
3957 #else
3958         ms_warning("Video support not compiled.");
3959 #endif
3960         return 0;
3961 }
3962
3963 float linphone_core_get_static_picture_fps(LinphoneCore *lc) {
3964 #ifdef VIDEO_ENABLED
3965         VideoStream *vs = NULL;
3966         vs=get_active_video_stream(lc);
3967         /* If we have a video stream (either preview, either from call), we
3968                  have a source and it is using the static picture filter, then
3969                  force the filter to use that picture. */
3970         if (vs && vs->source) {
3971                 if (ms_filter_get_id(vs->source) == MS_STATIC_IMAGE_ID) {
3972
3973                         float fps;
3974
3975                         ms_filter_call_method(vs->source, MS_FILTER_GET_FPS,(void *)&fps);
3976                         return fps;
3977                 }
3978         }
3979 #else
3980         ms_warning("Video support not compiled.");
3981 #endif
3982         return 0;
3983 }
3984
3985 /**
3986  * Returns the native window handle of the video window, casted as an unsigned long.
3987  *
3988  * @ingroup media_parameters
3989 **/
3990 unsigned long linphone_core_get_native_video_window_id(const LinphoneCore *lc){
3991 #ifdef VIDEO_ENABLED
3992         LinphoneCall *call=linphone_core_get_current_call (lc);
3993         if (call && call->videostream)
3994                 return video_stream_get_native_window_id(call->videostream);
3995         if (lc->previewstream)
3996                 return video_stream_get_native_window_id(lc->previewstream);
3997 #endif
3998         return lc->video_window_id;
3999 }
4000
4001 /**@ingroup media_parameters
4002  * Set the native video window id where the video is to be displayed.
4003  * If not set the core will create its own window.
4004 **/
4005 void linphone_core_set_native_video_window_id(LinphoneCore *lc, unsigned long id){
4006 #ifdef VIDEO_ENABLED
4007         LinphoneCall *call=linphone_core_get_current_call(lc);
4008         lc->video_window_id=id;
4009         if (call!=NULL && call->videostream){
4010                 video_stream_set_native_window_id(call->videostream,id);
4011         }
4012 #endif
4013 }
4014
4015 /**
4016  * Returns the native window handle of the video preview window, casted as an unsigned long.
4017  *
4018  * @ingroup media_parameters
4019 **/
4020 unsigned long linphone_core_get_native_preview_window_id(const LinphoneCore *lc){
4021 #ifdef VIDEO_ENABLED
4022         LinphoneCall *call=linphone_core_get_current_call (lc);
4023         if (call && call->videostream)
4024                 return video_stream_get_native_preview_window_id(call->videostream);
4025         if (lc->previewstream)
4026                 return video_preview_get_native_window_id(lc->previewstream);
4027 #endif
4028         return lc->preview_window_id;
4029 }
4030
4031 /**
4032  * @ingroup media_parameters
4033  * Set the native window id where the preview video (local camera) is to be displayed.
4034  * This has to be used in conjonction with linphone_core_use_preview_window().
4035  * If not set the core will create its own window.
4036 **/
4037 void linphone_core_set_native_preview_window_id(LinphoneCore *lc, unsigned long id){
4038         lc->preview_window_id=id;
4039 #ifdef VIDEO_ENABLED
4040         LinphoneCall *call=linphone_core_get_current_call(lc);
4041         if (call!=NULL && call->videostream){
4042                 video_stream_set_native_preview_window_id(call->videostream,id);
4043         }
4044 #endif
4045 }
4046
4047 /**
4048  * Can be used to disable video showing to free XV port
4049 **/
4050 void linphone_core_show_video(LinphoneCore *lc, bool_t show){
4051 #ifdef VIDEO_ENABLED
4052         ms_error("linphone_core_show_video %d", show);
4053         LinphoneCall *call=linphone_core_get_current_call(lc);
4054         if (call!=NULL && call->videostream){
4055                 video_stream_show_video(call->videostream,show);
4056         }
4057 #endif
4058 }
4059
4060 /**
4061  * Tells the core to use a separate window for local camera preview video, instead of
4062  * inserting local view within the remote video window.
4063  *
4064 **/
4065 void linphone_core_use_preview_window(LinphoneCore *lc, bool_t yesno){
4066         lc->use_preview_window=yesno;
4067 }
4068 /**
4069  * @ingroup media_parameters
4070  *returns current device orientation
4071  */
4072 int linphone_core_get_device_rotation(LinphoneCore *lc ) {
4073         return lc->device_rotation;
4074 }
4075 /**
4076  * @ingroup media_parameters
4077  * Tells the core the device current orientation. This can be used by capture filters
4078  * on mobile devices to select between portrait/landscape mode and to produce properly
4079  * oriented images. The exact meaning of the value in rotation if left to each device
4080  * specific implementations.
4081  *@param lc  object.
4082  *@param rotation . IOS supported values are 0 for UIInterfaceOrientationPortrait and 270 for UIInterfaceOrientationLandscapeRight.
4083  *
4084 **/
4085 void linphone_core_set_device_rotation(LinphoneCore *lc, int rotation) {
4086 ms_message("%s : rotation=%d\n", __FUNCTION__, rotation);
4087         lc->device_rotation = rotation;
4088 #ifdef VIDEO_ENABLED
4089         LinphoneCall *call=linphone_core_get_current_call(lc);
4090         if (call!=NULL && call->videostream){
4091                 video_stream_set_device_rotation(call->videostream,rotation);
4092         }
4093 #endif
4094 }
4095
4096 static MSVideoSizeDef supported_resolutions[]={
4097 #ifdef ENABLE_HD
4098         {       {MS_VIDEO_SIZE_1080P_W,MS_VIDEO_SIZE_1080P_H}   ,       "1080p" },
4099         {       {MS_VIDEO_SIZE_720P_W,MS_VIDEO_SIZE_720P_H}     ,       "1080p" },
4100 #endif
4101         {       {MS_VIDEO_SIZE_SVGA_W,MS_VIDEO_SIZE_SVGA_H}     ,       "svga"  },
4102         {       {MS_VIDEO_SIZE_4CIF_W,MS_VIDEO_SIZE_4CIF_H}     ,       "4cif"  },
4103         {       {MS_VIDEO_SIZE_VGA_W,MS_VIDEO_SIZE_VGA_H}       ,       "vga"   },
4104         {       {MS_VIDEO_SIZE_IOS_MEDIUM_H,MS_VIDEO_SIZE_IOS_MEDIUM_W} ,       "ios-medium"    },
4105         {       {MS_VIDEO_SIZE_CIF_W,MS_VIDEO_SIZE_CIF_H}       ,       "cif"   },
4106         {       {MS_VIDEO_SIZE_QVGA_W,MS_VIDEO_SIZE_QVGA_H}     ,       "qvga"  },
4107         {       {MS_VIDEO_SIZE_QCIF_W,MS_VIDEO_SIZE_QCIF_H}     ,       "qcif"  },      
4108         {       {0,0}                   ,       NULL    }
4109 };
4110
4111 /**
4112  * Returns the zero terminated table of supported video resolutions.
4113  *
4114  * @ingroup media_parameters
4115 **/
4116 const MSVideoSizeDef *linphone_core_get_supported_video_sizes(LinphoneCore *lc){
4117         return supported_resolutions;
4118 }
4119
4120 static MSVideoSize video_size_get_by_name(const char *name){
4121         MSVideoSizeDef *pdef=supported_resolutions;
4122         MSVideoSize null_vsize={0,0};
4123         for(;pdef->name!=NULL;pdef++){
4124                 if (strcasecmp(name,pdef->name)==0){
4125                         return pdef->vsize;
4126                 }
4127         }
4128         ms_warning("Video resolution %s is not supported in linphone.",name);
4129         return null_vsize;
4130 }
4131
4132 static const char *video_size_get_name(MSVideoSize vsize){
4133         MSVideoSizeDef *pdef=supported_resolutions;
4134         for(;pdef->name!=NULL;pdef++){
4135                 if (pdef->vsize.width==vsize.width && pdef->vsize.height==vsize.height){
4136                         return pdef->name;
4137                 }
4138         }
4139         return NULL;
4140 }
4141
4142 static bool_t video_size_supported(MSVideoSize vsize){
4143         if (video_size_get_name(vsize)) return TRUE;
4144         ms_warning("Video resolution %ix%i is not supported in linphone.",vsize.width,vsize.height);
4145         return FALSE;
4146 }
4147
4148 /**
4149  * Sets the preferred video size.
4150  *
4151  * @ingroup media_parameters
4152  * This applies only to the stream that is captured and sent to the remote party,
4153  * since we accept all standard video size on the receive path.
4154 **/
4155 void linphone_core_set_preferred_video_size(LinphoneCore *lc, MSVideoSize vsize){
4156         if (video_size_supported(vsize)){
4157                 MSVideoSize oldvsize=lc->video_conf.vsize;
4158                 lc->video_conf.vsize=vsize;
4159                 if (!ms_video_size_equal(oldvsize,vsize) && lc->previewstream!=NULL){
4160                         toggle_video_preview(lc,FALSE);
4161                         toggle_video_preview(lc,TRUE);
4162                 }
4163                 if ( linphone_core_ready(lc))
4164                         lp_config_set_string(lc->config,"video","size",video_size_get_name(vsize));
4165         }
4166 }
4167
4168 /**
4169  * Sets the preferred video size by its name.
4170  *
4171  * @ingroup media_parameters
4172  * This is identical to linphone_core_set_preferred_video_size() except
4173  * that it takes the name of the video resolution as input.
4174  * Video resolution names are: qcif, svga, cif, vga, 4cif, svga ...
4175 **/
4176 void linphone_core_set_preferred_video_size_by_name(LinphoneCore *lc, const char *name){
4177         MSVideoSize vsize=video_size_get_by_name(name);
4178         MSVideoSize default_vsize={MS_VIDEO_SIZE_CIF_W,MS_VIDEO_SIZE_CIF_H};
4179         if (vsize.width!=0)     linphone_core_set_preferred_video_size(lc,vsize);
4180         else linphone_core_set_preferred_video_size(lc,default_vsize);
4181 }
4182
4183 /**
4184  * Returns the current preferred video size for sending.
4185  *
4186  * @ingroup media_parameters
4187 **/
4188 MSVideoSize linphone_core_get_preferred_video_size(LinphoneCore *lc){
4189         return lc->video_conf.vsize;
4190 }
4191
4192 /**
4193  * Ask the core to stream audio from and to files, instead of using the soundcard.
4194 **/
4195 void linphone_core_use_files(LinphoneCore *lc, bool_t yesno){
4196         lc->use_files=yesno;
4197 }
4198
4199 /**
4200  * Sets a wav file to be played when putting somebody on hold,
4201  * or when files are used instead of soundcards (see linphone_core_use_files()).
4202  *
4203  * The file must be a 16 bit linear wav file.
4204 **/
4205 void linphone_core_set_play_file(LinphoneCore *lc, const char *file){
4206         LinphoneCall *call=linphone_core_get_current_call(lc);
4207         if (lc->play_file!=NULL){
4208                 ms_free(lc->play_file);
4209                 lc->play_file=NULL;
4210         }
4211         if (file!=NULL) {
4212                 lc->play_file=ms_strdup(file);
4213                 if (call && call->audiostream && call->audiostream->ticker)
4214                         audio_stream_play(call->audiostream,file);
4215         }
4216 }
4217
4218
4219 /**
4220  * Sets a wav file where incoming stream is to be recorded,
4221  * when files are used instead of soundcards (see linphone_core_use_files()).
4222  *
4223  * The file must be a 16 bit linear wav file.
4224 **/
4225 void linphone_core_set_record_file(LinphoneCore *lc, const char *file){
4226         LinphoneCall *call=linphone_core_get_current_call(lc);
4227         if (lc->rec_file!=NULL){
4228                 ms_free(lc->rec_file);
4229                 lc->rec_file=NULL;
4230         }
4231         if (file!=NULL) {
4232                 lc->rec_file=ms_strdup(file);
4233                 if (call && call->audiostream)
4234                         audio_stream_record(call->audiostream,file);
4235         }
4236 }
4237
4238
4239 static MSFilter *get_dtmf_gen(LinphoneCore *lc){
4240         LinphoneCall *call=linphone_core_get_current_call (lc);
4241         AudioStream *stream=NULL;
4242         if (call){
4243                 stream=call->audiostream;
4244         }else if (linphone_core_is_in_conference(lc)){
4245                 stream=lc->conf_ctx.local_participant;
4246         }
4247         if (stream){
4248                 return stream->dtmfgen;
4249         }
4250         if (lc->ringstream==NULL){
4251                 float amp=lp_config_get_float(lc->config,"sound","dtmf_player_amp",0.1);
4252                 MSSndCard *ringcard=lc->sound_conf.lsd_card ?lc->sound_conf.lsd_card : lc->sound_conf.ring_sndcard;
4253                 if (ringcard == NULL)
4254                         return NULL;
4255
4256                 lc->ringstream=ring_start(NULL,0,ringcard);
4257                 ms_filter_call_method(lc->ringstream->gendtmf,MS_DTMF_GEN_SET_DEFAULT_AMPLITUDE,&amp);
4258                 lc->dmfs_playing_start_time=time(NULL);
4259         }else{
4260                 if (lc->dmfs_playing_start_time!=0)
4261                         lc->dmfs_playing_start_time=time(NULL);
4262         }
4263         return lc->ringstream->gendtmf;
4264 }
4265
4266 /**
4267  * @ingroup media_parameters
4268  * Plays a dtmf sound to the local user.
4269  * @param lc #LinphoneCore
4270  * @param dtmf DTMF to play ['0'..'16'] | '#' | '#'
4271  * @param duration_ms duration in ms, -1 means play until next further call to #linphone_core_stop_dtmf()
4272 **/
4273 void linphone_core_play_dtmf(LinphoneCore *lc, char dtmf, int duration_ms){
4274         MSFilter *f=get_dtmf_gen(lc);
4275         if (f==NULL){
4276                 ms_error("No dtmf generator at this time !");
4277                 return;
4278         }
4279
4280         if (duration_ms>0)
4281                 ms_filter_call_method(f, MS_DTMF_GEN_PLAY, &dtmf);
4282         else ms_filter_call_method(f, MS_DTMF_GEN_START, &dtmf);
4283 }
4284
4285 /**
4286  * @ingroup media_parameters
4287  * Plays a repeated tone to the local user until next further call to #linphone_core_stop_dtmf()
4288  * @param lc #LinphoneCore
4289 **/
4290 void linphone_core_play_tone(LinphoneCore *lc){
4291         MSFilter *f=get_dtmf_gen(lc);
4292         MSDtmfGenCustomTone def;
4293         if (f==NULL){
4294                 ms_error("No dtmf generator at this time !");
4295                 return;
4296         }
4297         def.duration=300;
4298         def.frequency=500;
4299         def.amplitude=1;
4300         def.interval=2000;
4301         ms_filter_call_method(f, MS_DTMF_GEN_PLAY_CUSTOM,&def);
4302 }
4303
4304 /**
4305  * @ingroup media_parameters
4306  *
4307  * Stops playing a dtmf started by linphone_core_play_dtmf().
4308 **/
4309 void linphone_core_stop_dtmf(LinphoneCore *lc){
4310         MSFilter *f=get_dtmf_gen(lc);
4311         if (f!=NULL)
4312                 ms_filter_call_method_noarg (f, MS_DTMF_GEN_STOP);
4313 }
4314
4315
4316
4317 /**
4318  * Retrieves the user pointer that was given to linphone_core_new()
4319  *
4320  * @ingroup initializing
4321 **/
4322 void *linphone_core_get_user_data(LinphoneCore *lc){
4323         return lc->data;
4324 }
4325
4326 void linphone_core_set_user_data(LinphoneCore *lc, void *userdata){
4327         lc->data=userdata;
4328 }
4329
4330 int linphone_core_get_mtu(const LinphoneCore *lc){
4331         return lc->net_conf.mtu;
4332 }
4333
4334 void linphone_core_set_mtu(LinphoneCore *lc, int mtu){
4335         lc->net_conf.mtu=mtu;
4336         if (mtu>0){
4337                 if (mtu<500){
4338                         ms_error("MTU too small !");
4339                         mtu=500;
4340                 }
4341                 ms_set_mtu(mtu);
4342                 ms_message("MTU is supposed to be %i, rtp payload max size will be %i",mtu, ms_get_payload_max_size());
4343         }else ms_set_mtu(0);//use mediastreamer2 default value
4344 }
4345
4346 void linphone_core_set_waiting_callback(LinphoneCore *lc, LinphoneWaitingCallback cb, void *user_context){
4347         lc->wait_cb=cb;
4348         lc->wait_ctx=user_context;
4349 }
4350
4351 void linphone_core_start_waiting(LinphoneCore *lc, const char *purpose){
4352         if (lc->wait_cb){
4353                 lc->wait_ctx=lc->wait_cb(lc,lc->wait_ctx,LinphoneWaitingStart,purpose,0);
4354         }
4355 }
4356
4357 void linphone_core_update_progress(LinphoneCore *lc, const char *purpose, float progress){
4358         if (lc->wait_cb){
4359                 lc->wait_ctx=lc->wait_cb(lc,lc->wait_ctx,LinphoneWaitingProgress,purpose,progress);
4360         }else{
4361 #ifdef WIN32
4362                 Sleep(50000);
4363 #else
4364                 usleep(50000);
4365 #endif
4366         }
4367 }
4368
4369 void linphone_core_stop_waiting(LinphoneCore *lc){
4370         if (lc->wait_cb){
4371                 lc->wait_ctx=lc->wait_cb(lc,lc->wait_ctx,LinphoneWaitingFinished,NULL,0);
4372         }
4373 }
4374
4375 void linphone_core_set_rtp_transport_factories(LinphoneCore* lc, LinphoneRtpTransportFactories *factories){
4376         lc->rtptf=factories;
4377 }
4378
4379 /**
4380  * Retrieve RTP statistics regarding current call.
4381  * @param local RTP statistics computed locally.
4382  * @param remote RTP statistics computed by far end (obtained via RTCP feedback).
4383  *
4384  * @note Remote RTP statistics is not implemented yet.
4385  *
4386  * @returns 0 or -1 if no call is running.
4387 **/
4388
4389 int linphone_core_get_current_call_stats(LinphoneCore *lc, rtp_stats_t *local, rtp_stats_t *remote){
4390         LinphoneCall *call=linphone_core_get_current_call (lc);
4391         if (call!=NULL){
4392                 if (call->audiostream!=NULL){
4393                         memset(remote,0,sizeof(*remote));
4394                         audio_stream_get_local_rtp_stats (call->audiostream,local);
4395                         return 0;
4396                 }
4397         }
4398         return -1;
4399 }
4400
4401 void net_config_uninit(LinphoneCore *lc)
4402 {
4403         net_config_t *config=&lc->net_conf;
4404
4405         if (config->stun_server!=NULL){
4406                 lp_config_set_string(lc->config,"net","stun_server",config->stun_server);
4407                 ms_free(lc->net_conf.stun_server);
4408         }
4409         if (config->nat_address!=NULL){
4410                 lp_config_set_string(lc->config,"net","nat_address",config->nat_address);
4411                 ms_free(lc->net_conf.nat_address);
4412         }
4413         if (lc->net_conf.nat_address_ip !=NULL){
4414                 ms_free(lc->net_conf.nat_address_ip);
4415         }
4416         lp_config_set_int(lc->config,"net","firewall_policy",config->firewall_policy);
4417         lp_config_set_int(lc->config,"net","mtu",config->mtu);
4418 }
4419
4420
4421 void sip_config_uninit(LinphoneCore *lc)
4422 {
4423         MSList *elem;
4424         int i;
4425         sip_config_t *config=&lc->sip_conf;
4426         
4427         lp_config_set_int(lc->config,"sip","guess_hostname",config->guess_hostname);
4428         lp_config_set_string(lc->config,"sip","contact",config->contact);
4429         lp_config_set_int(lc->config,"sip","inc_timeout",config->inc_timeout);
4430         lp_config_set_int(lc->config,"sip","use_info",config->use_info);
4431         lp_config_set_int(lc->config,"sip","use_rfc2833",config->use_rfc2833);
4432         lp_config_set_int(lc->config,"sip","use_ipv6",config->ipv6_enabled);
4433         lp_config_set_int(lc->config,"sip","register_only_when_network_is_up",config->register_only_when_network_is_up);
4434
4435
4436         
4437
4438         for(elem=config->proxies,i=0;elem!=NULL;elem=ms_list_next(elem),i++){
4439                 LinphoneProxyConfig *cfg=(LinphoneProxyConfig*)(elem->data);
4440                 linphone_proxy_config_edit(cfg);        /* to unregister */
4441         }
4442
4443         for (i=0;i<20;i++){
4444                 sal_iterate(lc->sal);
4445 #ifndef WIN32
4446                 usleep(100000);
4447 #else
4448                 Sleep(100);
4449 #endif
4450         }
4451
4452         ms_list_for_each(config->proxies,(void (*)(void*)) linphone_proxy_config_destroy);
4453         ms_list_free(config->proxies);
4454         config->proxies=NULL;
4455
4456         linphone_proxy_config_write_to_config_file(lc->config,NULL,i);  /*mark the end */
4457
4458         ms_list_for_each(lc->auth_info,(void (*)(void*))linphone_auth_info_destroy);
4459         ms_list_free(lc->auth_info);
4460         lc->auth_info=NULL;
4461
4462         sal_uninit(lc->sal);
4463         lc->sal=NULL;
4464
4465         if (lc->sip_conf.guessed_contact)
4466                 ms_free(lc->sip_conf.guessed_contact);
4467         if (config->contact)
4468                 ms_free(config->contact);
4469
4470 }
4471
4472 void rtp_config_uninit(LinphoneCore *lc)
4473 {
4474         rtp_config_t *config=&lc->rtp_conf;
4475         lp_config_set_int(lc->config,"rtp","audio_rtp_port",config->audio_rtp_port);
4476         lp_config_set_int(lc->config,"rtp","video_rtp_port",config->video_rtp_port);
4477         lp_config_set_int(lc->config,"rtp","audio_jitt_comp",config->audio_jitt_comp);
4478         lp_config_set_int(lc->config,"rtp","video_jitt_comp",config->video_jitt_comp);
4479         lp_config_set_int(lc->config,"rtp","nortp_timeout",config->nortp_timeout);
4480 }
4481
4482 void sound_config_uninit(LinphoneCore *lc)
4483 {
4484         sound_config_t *config=&lc->sound_conf;
4485         ms_free(config->cards);
4486
4487         lp_config_set_string(lc->config,"sound","remote_ring",config->remote_ring);
4488
4489         if (config->local_ring) ms_free(config->local_ring);
4490         if (config->remote_ring) ms_free(config->remote_ring);
4491         ms_snd_card_manager_destroy();
4492 }
4493
4494 void video_config_uninit(LinphoneCore *lc)
4495 {
4496         lp_config_set_string(lc->config,"video","size",video_size_get_name(linphone_core_get_preferred_video_size(lc)));
4497         lp_config_set_int(lc->config,"video","display",lc->video_conf.display);
4498         lp_config_set_int(lc->config,"video","capture",lc->video_conf.capture);
4499         lp_config_set_int(lc->config,"video","show_local",linphone_core_video_preview_enabled(lc));
4500         lp_config_set_int(lc->config,"video","self_view",linphone_core_self_view_enabled(lc));
4501         if (lc->video_conf.cams)
4502                 ms_free(lc->video_conf.cams);
4503 }
4504
4505 void _linphone_core_codec_config_write(LinphoneCore *lc){
4506         if (linphone_core_ready(lc)){
4507                 PayloadType *pt;
4508                 codecs_config_t *config=&lc->codecs_conf;
4509                 MSList *node;
4510                 char key[50];
4511                 int index;
4512                 index=0;
4513                 for(node=config->audio_codecs;node!=NULL;node=ms_list_next(node)){
4514                         pt=(PayloadType*)(node->data);
4515                         sprintf(key,"audio_codec_%i",index);
4516                         lp_config_set_string(lc->config,key,"mime",pt->mime_type);
4517                         lp_config_set_int(lc->config,key,"rate",pt->clock_rate);
4518                         lp_config_set_int(lc->config,key,"enabled",linphone_core_payload_type_enabled(lc,pt));
4519                         index++;
4520                 }
4521                 sprintf(key,"audio_codec_%i",index);
4522                 lp_config_clean_section (lc->config,key);
4523
4524                 index=0;
4525                 for(node=config->video_codecs;node!=NULL;node=ms_list_next(node)){
4526                         pt=(PayloadType*)(node->data);
4527                         sprintf(key,"video_codec_%i",index);
4528                         lp_config_set_string(lc->config,key,"mime",pt->mime_type);
4529                         lp_config_set_int(lc->config,key,"rate",pt->clock_rate);
4530                         lp_config_set_int(lc->config,key,"enabled",linphone_core_payload_type_enabled(lc,pt));
4531                         lp_config_set_string(lc->config,key,"recv_fmtp",pt->recv_fmtp);
4532                         index++;
4533                 }
4534                 sprintf(key,"video_codec_%i",index);
4535                 lp_config_clean_section (lc->config,key);
4536         }
4537 }
4538
4539 static void codecs_config_uninit(LinphoneCore *lc)
4540 {
4541         _linphone_core_codec_config_write(lc);
4542         ms_list_free(lc->codecs_conf.audio_codecs);
4543         ms_list_free(lc->codecs_conf.video_codecs);
4544 }
4545
4546 void ui_config_uninit(LinphoneCore* lc)
4547 {
4548         if (lc->friends){
4549                 ms_list_for_each(lc->friends,(void (*)(void *))linphone_friend_destroy);
4550                 ms_list_free(lc->friends);
4551                 lc->friends=NULL;
4552         }
4553 }
4554
4555 /**
4556  * Returns the LpConfig object used to manage the storage (config) file.
4557  *
4558  * @ingroup misc
4559  * The application can use the LpConfig object to insert its own private
4560  * sections and pairs of key=value in the configuration file.
4561  *
4562 **/
4563 LpConfig *linphone_core_get_config(LinphoneCore *lc){
4564         return lc->config;
4565 }
4566
4567 static void linphone_core_uninit(LinphoneCore *lc)
4568 {
4569         linphone_core_free_hooks(lc);
4570         while(lc->calls)
4571         {
4572                 LinphoneCall *the_call = lc->calls->data;
4573                 linphone_core_terminate_call(lc,the_call);
4574                 linphone_core_iterate(lc);
4575 #ifdef WIN32
4576                 Sleep(50000);
4577 #else
4578                 usleep(50000);
4579 #endif
4580         }
4581         if (lc->friends)
4582                 ms_list_for_each(lc->friends,(void (*)(void *))linphone_friend_close_subscriptions);
4583         linphone_core_set_state(lc,LinphoneGlobalShutdown,"Shutting down");
4584 #ifdef VIDEO_ENABLED
4585         if (lc->previewstream!=NULL){
4586                 video_preview_stop(lc->previewstream);
4587                 lc->previewstream=NULL;
4588         }
4589 #endif
4590         ms_event_queue_destroy(lc->msevq);
4591         lc->msevq=NULL;
4592         /* save all config */
4593         net_config_uninit(lc);
4594         rtp_config_uninit(lc);
4595         if (lc->ringstream) ring_stop(lc->ringstream);
4596         sound_config_uninit(lc);
4597         video_config_uninit(lc);
4598         codecs_config_uninit(lc);
4599         ui_config_uninit(lc);
4600         sip_config_uninit(lc);
4601         if (lp_config_needs_commit(lc->config)) lp_config_sync(lc->config);
4602         lp_config_destroy(lc->config);
4603         lc->config = NULL; /* Mark the config as NULL to block further calls */
4604         sip_setup_unregister_all();
4605
4606         ms_list_for_each(lc->call_logs,(void (*)(void*))linphone_call_log_destroy);
4607         lc->call_logs=ms_list_free(lc->call_logs);
4608
4609         linphone_core_free_payload_types(lc);
4610         ortp_exit();
4611         linphone_core_set_state(lc,LinphoneGlobalOff,"Off");
4612 #ifdef TUNNEL_ENABLED
4613         if (lc->tunnel) linphone_tunnel_destroy(lc->tunnel);
4614 #endif
4615 }
4616
4617 static void set_network_reachable(LinphoneCore* lc,bool_t isReachable, time_t curtime){
4618         ms_message("Network state is now [%s]",isReachable?"UP":"DOWN");
4619         // second get the list of available proxies
4620         const MSList *elem=linphone_core_get_proxy_config_list(lc);
4621         for(;elem!=NULL;elem=elem->next){
4622                 LinphoneProxyConfig *cfg=(LinphoneProxyConfig*)elem->data;
4623                 if (linphone_proxy_config_register_enabled(cfg) ) {
4624                         if (!isReachable) {
4625                                 linphone_proxy_config_set_state(cfg, LinphoneRegistrationNone,"Registration impossible (network down)");
4626                         }else{
4627                                 cfg->commit=TRUE;
4628                         }
4629                 }
4630         }
4631         lc->netup_time=curtime;
4632         lc->network_reachable=isReachable;
4633         if(!isReachable) {
4634                 sal_unlisten_ports (lc->sal);
4635         } else {
4636                 apply_transports(lc);
4637         }
4638
4639 }
4640
4641 void linphone_core_refresh_registers(LinphoneCore* lc) {
4642         const MSList *elem;
4643         if (!lc->network_reachable) {
4644                 ms_warning("Refresh register operation not available (network unreachable)");
4645                 return;
4646         }
4647         elem=linphone_core_get_proxy_config_list(lc);
4648         for(;elem!=NULL;elem=elem->next){
4649                 LinphoneProxyConfig *cfg=(LinphoneProxyConfig*)elem->data;
4650                 if (linphone_proxy_config_register_enabled(cfg) && linphone_proxy_config_get_expires(cfg)>0) {
4651                         linphone_proxy_config_refresh_register(cfg);
4652                 }
4653         }
4654 }
4655
4656 void __linphone_core_invalidate_registers(LinphoneCore* lc){
4657         const MSList *elem=linphone_core_get_proxy_config_list(lc);
4658         for(;elem!=NULL;elem=elem->next){
4659                 LinphoneProxyConfig *cfg=(LinphoneProxyConfig*)elem->data;
4660                 if (linphone_proxy_config_register_enabled(cfg)) {
4661                         linphone_proxy_config_edit(cfg);
4662                         linphone_proxy_config_done(cfg);
4663                 }
4664         }
4665 }
4666
4667 void linphone_core_set_network_reachable(LinphoneCore* lc,bool_t isReachable) {
4668         //first disable automatic mode
4669         if (lc->auto_net_state_mon) {
4670                 ms_message("Disabling automatic network state monitoring");
4671                 lc->auto_net_state_mon=FALSE;
4672         }
4673         set_network_reachable(lc,isReachable, ms_time(NULL));
4674 }
4675
4676 bool_t linphone_core_is_network_reachable(LinphoneCore* lc) {
4677         return lc->network_reachable;
4678 }
4679 ortp_socket_t linphone_core_get_sip_socket(LinphoneCore *lc){
4680         return sal_get_socket(lc->sal);
4681 }
4682 /**
4683  * Destroys a LinphoneCore
4684  *
4685  * @ingroup initializing
4686 **/
4687 void linphone_core_destroy(LinphoneCore *lc){
4688         linphone_core_uninit(lc);
4689         ms_free(lc);
4690 }
4691 /**
4692  * Get the number of Call
4693  *
4694  * @ingroup call_control
4695 **/
4696 int linphone_core_get_calls_nb(const LinphoneCore *lc){
4697         return  ms_list_size(lc->calls);;
4698 }
4699
4700 /**
4701  * Check if we do not have exceed the number of simultaneous call
4702  *
4703  * @ingroup call_control
4704 **/
4705 bool_t linphone_core_can_we_add_call(LinphoneCore *lc)
4706 {
4707         if(linphone_core_get_calls_nb(lc) < lc->max_calls)
4708                 return TRUE;
4709         ms_message("Maximum amount of simultaneous calls reached !");
4710         return FALSE;
4711 }
4712
4713
4714 int linphone_core_add_call( LinphoneCore *lc, LinphoneCall *call)
4715 {
4716         if(linphone_core_can_we_add_call(lc))
4717         {
4718                 lc->calls = ms_list_append(lc->calls,call);
4719                 return 0;
4720         }
4721         return -1;
4722 }
4723
4724 int linphone_core_del_call( LinphoneCore *lc, LinphoneCall *call)
4725 {
4726         MSList *it;
4727         MSList *the_calls = lc->calls;
4728
4729         it=ms_list_find(the_calls,call);
4730         if (it)
4731         {
4732                 the_calls = ms_list_remove_link(the_calls,it);
4733         }
4734         else
4735         {
4736                 ms_warning("could not find the call into the list\n");
4737                 return -1;
4738         }
4739         lc->calls = the_calls;
4740         return 0;
4741 }
4742
4743 /**
4744  * Specifiies a ring back tone to be played to far end during incoming calls.
4745 **/
4746 void linphone_core_set_remote_ringback_tone(LinphoneCore *lc, const char *file){
4747         if (lc->sound_conf.ringback_tone){
4748                 ms_free(lc->sound_conf.ringback_tone);
4749                 lc->sound_conf.ringback_tone=NULL;
4750         }
4751         if (file)
4752                 lc->sound_conf.ringback_tone=ms_strdup(file);
4753 }
4754
4755 /**
4756  * Returns the ring back tone played to far end during incoming calls.
4757 **/
4758 const char *linphone_core_get_remote_ringback_tone(const LinphoneCore *lc){
4759         return lc->sound_conf.ringback_tone;
4760 }
4761
4762 static PayloadType* find_payload_type_from_list(const char* type, int rate,const MSList* from) {
4763         const MSList *elem;
4764         for(elem=from;elem!=NULL;elem=elem->next){
4765                 PayloadType *pt=(PayloadType*)elem->data;
4766                 if ((strcasecmp((char*)type, payload_type_get_mime(pt)) == 0) && (rate == -1 || rate==pt->clock_rate)) {
4767                         return pt;
4768                 }
4769         }
4770         return NULL;
4771 }
4772
4773 /**
4774  * Get payload type  from mime type and clock rate
4775  * @ingroup media_parameters
4776  * This function searches in audio and video codecs for the given payload type name and clockrate.
4777  * Returns NULL if not found.
4778  */
4779 PayloadType* linphone_core_find_payload_type(LinphoneCore* lc, const char* type, int rate) {
4780         PayloadType* result = find_payload_type_from_list(type, rate, linphone_core_get_audio_codecs(lc));
4781         if (result)  {
4782                 return result;
4783         } else {
4784                 result = find_payload_type_from_list(type, rate, linphone_core_get_video_codecs(lc));
4785                 if (result) {
4786                         return result;
4787                 }
4788         }
4789         /*not found*/
4790         return NULL;
4791 }
4792
4793 const char *linphone_global_state_to_string(LinphoneGlobalState gs){
4794         switch(gs){
4795                 case LinphoneGlobalOff:
4796                         return "LinphoneGlobalOff";
4797                 break;
4798                 case LinphoneGlobalOn:
4799                         return "LinphoneGlobalOn";
4800                 break;
4801                 case LinphoneGlobalStartup:
4802                         return "LinphoneGlobalStartup";
4803                 break;
4804                 case LinphoneGlobalShutdown:
4805                         return "LinphoneGlobalShutdown";
4806                 break;
4807         }
4808         return NULL;
4809 }
4810
4811 LinphoneGlobalState linphone_core_get_global_state(const LinphoneCore *lc){
4812         return lc->state;
4813 }
4814
4815 LinphoneCallParams *linphone_core_create_default_call_parameters(LinphoneCore *lc){
4816         LinphoneCallParams *p=ms_new0(LinphoneCallParams,1);
4817         linphone_core_init_default_params(lc, p);
4818         return p;
4819 }
4820
4821 const char *linphone_reason_to_string(LinphoneReason err){
4822         switch(err){
4823                 case LinphoneReasonNone:
4824                         return "No error";
4825                 case LinphoneReasonNoResponse:
4826                         return "No response";
4827                 case LinphoneReasonBadCredentials:
4828                         return "Bad credentials";
4829                 case LinphoneReasonDeclined:
4830                         return "Call declined";
4831                 case LinphoneReasonNotFound:
4832                         return "User not found";
4833                 case LinphoneReasonNotAnswered:
4834                         return "Not answered";
4835         }
4836         return "unknown error";
4837 }
4838
4839 const char *linphone_error_to_string(LinphoneReason err){
4840         return linphone_reason_to_string(err);
4841 }
4842 /**
4843  * Enables signaling keep alive
4844  */
4845 void linphone_core_enable_keep_alive(LinphoneCore* lc,bool_t enable) {
4846         if (enable > 0) {
4847                 sal_set_keepalive_period(lc->sal,lc->sip_conf.keepalive_period);
4848         } else {
4849                 sal_set_keepalive_period(lc->sal,0);
4850         }
4851 }
4852 /**
4853  * Is signaling keep alive enabled
4854  */
4855 bool_t linphone_core_keep_alive_enabled(LinphoneCore* lc) {
4856         return sal_get_keepalive_period(lc->sal) > 0;
4857 }
4858
4859 void linphone_core_start_dtmf_stream(LinphoneCore* lc) {
4860         get_dtmf_gen(lc); /*make sure ring stream is started*/
4861         lc->ringstream_autorelease=FALSE; /*disable autorelease mode*/
4862 }
4863
4864 void linphone_core_stop_dtmf_stream(LinphoneCore* lc) {
4865         if (lc->ringstream && lc->dmfs_playing_start_time!=0) {
4866                 ring_stop(lc->ringstream);
4867                 lc->ringstream=NULL;
4868         }
4869 }
4870
4871 int linphone_core_get_max_calls(LinphoneCore *lc) {
4872         return lc->max_calls;
4873 }
4874 void linphone_core_set_max_calls(LinphoneCore *lc, int max) {
4875         lc->max_calls=max;
4876 }
4877
4878 typedef struct Hook{
4879         LinphoneCoreIterateHook fun;
4880         void *data;
4881 }Hook;
4882
4883 static Hook *hook_new(LinphoneCoreIterateHook hook, void *hook_data){
4884         Hook *h=ms_new(Hook,1);
4885         h->fun=hook;
4886         h->data=hook_data;
4887         return h;
4888 }
4889
4890 static void hook_invoke(Hook *h){
4891         h->fun(h->data);
4892 }
4893
4894 void linphone_core_add_iterate_hook(LinphoneCore *lc, LinphoneCoreIterateHook hook, void *hook_data){
4895         lc->hooks=ms_list_append(lc->hooks,hook_new(hook,hook_data));
4896 }
4897
4898 static void linphone_core_run_hooks(LinphoneCore *lc){
4899         ms_list_for_each(lc->hooks,(void (*)(void*))hook_invoke);
4900 }
4901
4902 static void linphone_core_free_hooks(LinphoneCore *lc){
4903         ms_list_for_each(lc->hooks,(void (*)(void*))ms_free);
4904         ms_list_free(lc->hooks);
4905         lc->hooks=NULL;
4906 }
4907
4908 void linphone_core_remove_iterate_hook(LinphoneCore *lc, LinphoneCoreIterateHook hook, void *hook_data){
4909         MSList *elem;
4910         for(elem=lc->hooks;elem!=NULL;elem=elem->next){
4911                 Hook *h=(Hook*)elem->data;
4912                 if (h->fun==hook && h->data==hook_data){
4913                         ms_list_remove_link(lc->hooks,elem);
4914                         ms_free(h);
4915                         return;
4916                 }
4917         }
4918         ms_error("linphone_core_remove_iterate_hook(): No such hook found.");
4919 }
4920
4921 void linphone_core_set_zrtp_secrets_file(LinphoneCore *lc, const char* file){
4922         if (lc->zrtp_secrets_cache != NULL) {
4923                 ms_free(lc->zrtp_secrets_cache);
4924         }
4925         lc->zrtp_secrets_cache=file ? ms_strdup(file) : NULL;
4926 }
4927
4928 const LinphoneCall* linphone_core_find_call_from_uri(LinphoneCore *lc, const char *uri) {
4929         if (uri == NULL) return NULL;
4930         MSList *calls=lc->calls;
4931         while(calls) {
4932                 const LinphoneCall *c=(LinphoneCall*)calls->data;
4933                 calls=calls->next;
4934                 const LinphoneAddress *address = linphone_call_get_remote_address(c);
4935                 char *current_uri=linphone_address_as_string_uri_only(address);
4936                 if (strcmp(uri,current_uri)==0) {
4937                         ms_free(current_uri);
4938                         return c;
4939                 } else {
4940                         ms_free(current_uri);
4941                 }
4942         }
4943         return NULL;
4944 }
4945
4946
4947 /**
4948  * Check if a call will need the sound resources.
4949  *
4950  * @ingroup call_control
4951  * @param lc The LinphoneCore
4952 **/
4953 bool_t linphone_core_sound_resources_locked(LinphoneCore *lc){
4954         MSList *calls=lc->calls;
4955         while(calls) {
4956                 LinphoneCall *c=(LinphoneCall*)calls->data;
4957                 calls=calls->next;
4958                 switch (c->state) {
4959                         case LinphoneCallOutgoingInit:
4960                         case LinphoneCallOutgoingProgress:
4961                         case LinphoneCallOutgoingRinging:
4962                         case LinphoneCallOutgoingEarlyMedia:
4963                         case LinphoneCallConnected:
4964                         case LinphoneCallRefered:
4965                         case LinphoneCallIncomingEarlyMedia:
4966                         case LinphoneCallUpdated:
4967                                 return TRUE;
4968                         default:
4969                                 break;
4970                 }
4971         }
4972         return FALSE;
4973 }
4974
4975 void linphone_core_set_srtp_enabled(LinphoneCore *lc, bool_t enabled) {
4976         lp_config_set_int(lc->config,"sip","srtp",(int)enabled);
4977 }
4978
4979 /**
4980  * Returns whether a media encryption scheme is supported by the LinphoneCore engine
4981 **/
4982 bool_t linphone_core_media_encryption_supported(const LinphoneCore *lc, LinphoneMediaEncryption menc){
4983         switch(menc){
4984                 case LinphoneMediaEncryptionSRTP:
4985                         return ortp_srtp_supported();
4986                 case LinphoneMediaEncryptionZRTP:
4987                         return ortp_zrtp_available();
4988                 case LinphoneMediaEncryptionNone:
4989                         return TRUE;
4990         }
4991         return FALSE;
4992 }
4993
4994 int linphone_core_set_media_encryption(LinphoneCore *lc, enum LinphoneMediaEncryption menc) {
4995         const char *type="none";
4996         int ret=0;
4997         if (menc == LinphoneMediaEncryptionSRTP){
4998                 if (!ortp_srtp_supported()){
4999                         ms_warning("SRTP not supported by library.");
5000                         type="none";
5001                         ret=-1;
5002                 }else type="srtp";
5003         }else if (menc == LinphoneMediaEncryptionZRTP){
5004                 if (!ortp_zrtp_available()){
5005                         ms_warning("ZRTP not supported by library.");
5006                         type="none";
5007                         ret=-1;
5008                 }else type="zrtp";
5009         }
5010         lp_config_set_string(lc->config,"sip","media_encryption",type);
5011         return ret;
5012 }
5013
5014 LinphoneMediaEncryption linphone_core_get_media_encryption(LinphoneCore *lc) {
5015         const char* menc = lp_config_get_string(lc->config, "sip", "media_encryption", NULL);
5016         
5017         if (menc == NULL)
5018                 return LinphoneMediaEncryptionNone;
5019         else if (strcmp(menc, "srtp")==0)
5020                 return LinphoneMediaEncryptionSRTP;
5021         else if (strcmp(menc, "zrtp")==0)
5022                 return LinphoneMediaEncryptionZRTP;
5023         else
5024                 return LinphoneMediaEncryptionNone;
5025 }
5026
5027 bool_t linphone_core_is_media_encryption_mandatory(LinphoneCore *lc) {
5028         return (bool_t)lp_config_get_int(lc->config, "sip", "media_encryption_mandatory", 0);
5029 }
5030
5031 void linphone_core_set_media_encryption_mandatory(LinphoneCore *lc, bool_t m) {
5032         lp_config_set_int(lc->config, "sip", "media_encryption_mandatory", (int)m);
5033 }
5034
5035 void linphone_core_init_default_params(LinphoneCore*lc, LinphoneCallParams *params) {
5036         params->has_video=linphone_core_video_enabled(lc) && lc->video_policy.automatically_initiate;
5037         params->media_encryption=linphone_core_get_media_encryption(lc);        
5038         params->in_conference=FALSE;
5039 }
5040
5041 void linphone_call_zoom_video(LinphoneCall* call, float zoom_factor, float* cx, float* cy) {
5042         VideoStream* vstream = call->videostream;
5043         if (vstream) {
5044                 float zoom[3];
5045                 
5046                 if (zoom_factor < 1)
5047                         zoom_factor = 1;
5048                 float halfsize = 0.5 * 1.0 / zoom_factor;
5049
5050                 if ((*cx - halfsize) < 0)
5051                         *cx = 0 + halfsize;
5052                 if ((*cx + halfsize) > 1)
5053                         *cx = 1 - halfsize;
5054                 if ((*cy - halfsize) < 0)
5055                         *cy = 0 + halfsize;
5056                 if ((*cy + halfsize) > 1)
5057                         *cy = 1 - halfsize;
5058         
5059                 zoom[0] = zoom_factor;
5060                 zoom[1] = *cx;
5061                 zoom[2] = *cy;
5062                 ms_filter_call_method(vstream->output, MS_VIDEO_DISPLAY_ZOOM, &zoom);
5063         }else ms_warning("Could not apply zoom: video output wasn't activated.");
5064 }
5065