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