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