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