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