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