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