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