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