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