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