]> sjero.net Git - linphone/blob - coreapi/private.h
Merge branch 'dev_ice'
[linphone] / coreapi / private.h
1 /***************************************************************************
2  *            private.h
3  *
4  *  Mon Jun 13 14:23:23 2005
5  *  Copyright  2005  Simon Morlat
6  *  Email simon dot morlat at linphone dot org
7  ****************************************************************************/
8
9 /*
10  *  This program is free software; you can redistribute it and/or modify
11  *  it under the terms of the GNU General Public License as published by
12  *  the Free Software Foundation; either version 2 of the License, or
13  *  (at your option) any later version.
14  *
15  *  This program is distributed in the hope that it will be useful,
16  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  *  GNU General Public License for more details.
19  *
20  *  You should have received a copy of the GNU General Public License
21  *  along with this program; if not, write to the Free Software
22  *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23  */
24
25 #ifndef _PRIVATE_H
26 #define _PRIVATE_H
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 #include "linphonecore.h"
31 #include "linphone_tunnel.h"
32 #include "linphonecore_utils.h"
33 #include "sal.h"
34
35 #ifdef HAVE_CONFIG_H
36 #include "config.h"
37 #endif
38 #include "mediastreamer2/ice.h"
39 #include "mediastreamer2/mediastream.h"
40 #include "mediastreamer2/msconference.h"
41
42 #ifndef LIBLINPHONE_VERSION
43 #define LIBLINPHONE_VERSION LINPHONE_VERSION
44 #endif
45
46 #ifndef PACKAGE_SOUND_DIR
47 #define PACKAGE_SOUND_DIR "."
48 #endif
49
50 #ifndef PACKAGE_DATA_DIR
51 #define PACKAGE_DATA_DIR "."
52 #endif
53
54 #ifdef HAVE_GETTEXT
55 #include <libintl.h>
56 #ifndef _
57 #define _(String) gettext(String)
58 #endif
59 #else
60 #ifndef _
61 #define _(something)    (something)
62 #endif
63 #ifndef ngettext
64 #define ngettext(singular, plural, number)      (((number)==1)?(singular):(plural))
65 #endif
66 #endif
67
68 struct _LinphoneCallParams{
69         LinphoneCall *referer; /*in case this call creation is consecutive to an incoming transfer, this points to the original call */
70         int audio_bw; /* bandwidth limit for audio stream */
71         LinphoneMediaEncryption media_encryption;
72         PayloadType *audio_codec;
73         PayloadType *video_codec;
74         bool_t has_video;
75         bool_t real_early_media; /*send real media even during early media (for outgoing calls)*/
76         bool_t in_conference; /*in conference mode */
77         bool_t pad;
78         
79 };
80     
81 typedef struct _CallCallbackObj
82 {
83     LinphoneCallCbFunc _func;
84     void * _user_data;
85 }CallCallbackObj;
86
87 static const int linphone_call_magic=0x3343;
88
89 struct _LinphoneCall
90 {
91         int magic; /*used to distinguish from proxy config*/
92         struct _LinphoneCore *core;
93         SalMediaDescription *localdesc;
94         SalMediaDescription *resultdesc;
95         LinphoneCallDir dir;
96         LinphoneCall *referer; /*when this call is the result of a transfer, referer is set to the original call that caused the transfer*/
97         struct _RtpProfile *audio_profile;
98         struct _RtpProfile *video_profile;
99         struct _LinphoneCallLog *log;
100         SalOp *op;
101         SalOp *ping_op;
102         char localip[LINPHONE_IPADDR_SIZE]; /* our best guess for local ipaddress for this call */
103         time_t start_time; /*time at which the call was initiated*/
104         time_t media_start_time; /*time at which it was accepted, media streams established*/
105         LinphoneCallState       state;
106         LinphoneCallState transfer_state; /*idle if no transfer*/
107         LinphoneReason reason;
108         int refcnt;
109         void * user_pointer;
110         int audio_port;
111         int video_port;
112         struct _AudioStream *audiostream;  /**/
113         struct _VideoStream *videostream;
114         MSAudioEndpoint *endpoint; /*used for conferencing*/
115         char *refer_to;
116         LinphoneCallParams params;
117         LinphoneCallParams current_params;
118         LinphoneCallParams remote_params;
119         int up_bw; /*upload bandwidth setting at the time the call is started. Used to detect if it changes during a call */
120         int audio_bw;   /*upload bandwidth used by audio */
121         bool_t refer_pending;
122         bool_t media_pending;
123         bool_t audio_muted;
124         bool_t camera_active;
125         bool_t all_muted; /*this flag is set during early medias*/
126         bool_t playing_ringbacktone;
127         bool_t owns_call_log;
128         bool_t ringing_beep; /* whether this call is ringing through an already existent current call*/
129         OrtpEvQueue *audiostream_app_evq;
130         char *auth_token;
131         OrtpEvQueue *videostream_app_evq;
132         bool_t videostream_encrypted;
133         bool_t audiostream_encrypted;
134         bool_t auth_token_verified;
135         bool_t defer_update;
136         bool_t was_automatically_paused;
137         bool_t ping_replied;
138         CallCallbackObj nextVideoFrameDecoded;
139         LinphoneCallStats stats[2];
140         IceSession *ice_session;
141 };
142
143
144 LinphoneCall * linphone_call_new_outgoing(struct _LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, const LinphoneCallParams *params);
145 LinphoneCall * linphone_call_new_incoming(struct _LinphoneCore *lc, LinphoneAddress *from, LinphoneAddress *to, SalOp *op);
146 void linphone_call_set_state(LinphoneCall *call, LinphoneCallState cstate, const char *message);
147
148 /* private: */
149 LinphoneCallLog * linphone_call_log_new(LinphoneCall *call, LinphoneAddress *local, LinphoneAddress * remote);
150 void linphone_call_log_completed(LinphoneCall *call);
151 void linphone_call_log_destroy(LinphoneCallLog *cl);
152 void linphone_call_set_transfer_state(LinphoneCall* call, LinphoneCallState state);
153
154 void linphone_auth_info_write_config(struct _LpConfig *config, LinphoneAuthInfo *obj, int pos);
155
156 void linphone_core_update_proxy_register(LinphoneCore *lc);
157 void linphone_core_refresh_subscribes(LinphoneCore *lc);
158 int linphone_core_abort_call(LinphoneCore *lc, LinphoneCall *call, const char *error);
159
160 int linphone_proxy_config_send_publish(LinphoneProxyConfig *cfg, LinphoneOnlineStatus os);
161 void linphone_proxy_config_set_state(LinphoneProxyConfig *cfg, LinphoneRegistrationState rstate, const char *message);
162
163 int linphone_online_status_to_eXosip(LinphoneOnlineStatus os);
164 void linphone_friend_close_subscriptions(LinphoneFriend *lf);
165 void linphone_friend_notify(LinphoneFriend *lf, LinphoneOnlineStatus os);
166 LinphoneFriend *linphone_find_friend_by_inc_subscribe(MSList *l, SalOp *op);
167 LinphoneFriend *linphone_find_friend_by_out_subscribe(MSList *l, SalOp *op);
168
169 int parse_hostname_to_addr(const char *server, struct sockaddr_storage *ss, socklen_t *socklen);
170 int set_lock_file();
171 int get_lock_file();
172 int remove_lock_file();
173 int do_registration(LinphoneCore *lc, bool_t doit);
174 void check_for_registration(LinphoneCore *lc);
175 void check_sound_device(LinphoneCore *lc);
176 void linphone_core_verify_codecs(LinphoneCore *lc);
177 void linphone_core_get_local_ip(LinphoneCore *lc, const char *to, char *result);
178 bool_t host_has_ipv6_network();
179 bool_t lp_spawn_command_line_sync(const char *command, char **result,int *command_ret);
180
181 static inline int get_min_bandwidth(int dbw, int ubw){
182         if (dbw<=0) return ubw;
183         if (ubw<=0) return dbw;
184         return MIN(dbw,ubw);
185 }
186
187 static inline bool_t bandwidth_is_greater(int bw1, int bw2){
188         if (bw1<0) return TRUE;
189         else if (bw2<0) return FALSE;
190         else return bw1>=bw2;
191 }
192
193 static inline int get_video_bandwidth(int total, int audio){
194         if (total<=0) return 0;
195         return total-audio-10;
196 }
197
198 static inline void set_string(char **dest, const char *src){
199         if (*dest){
200                 ms_free(*dest);
201                 *dest=NULL;
202         }
203         if (src)
204                 *dest=ms_strdup(src);
205 }
206
207 #define PAYLOAD_TYPE_ENABLED    PAYLOAD_TYPE_USER_FLAG_0
208
209 SalPresenceStatus linphone_online_status_to_sal(LinphoneOnlineStatus os);
210 void linphone_process_authentication(LinphoneCore* lc, SalOp *op);
211 void linphone_authentication_ok(LinphoneCore *lc, SalOp *op);
212 void linphone_subscription_new(LinphoneCore *lc, SalOp *op, const char *from);
213 void linphone_notify_recv(LinphoneCore *lc, SalOp *op, SalSubscribeStatus ss, SalPresenceStatus status);
214 void linphone_proxy_config_process_authentication_failure(LinphoneCore *lc, SalOp *op);
215
216 void linphone_subscription_answered(LinphoneCore *lc, SalOp *op);
217 void linphone_subscription_closed(LinphoneCore *lc, SalOp *op);
218
219 MSList *linphone_find_friend(MSList *fl, const LinphoneAddress *fri, LinphoneFriend **lf);
220
221 void linphone_core_update_allocated_audio_bandwidth(LinphoneCore *lc);
222 void linphone_core_update_allocated_audio_bandwidth_in_call(LinphoneCall *call, const PayloadType *pt);
223 void linphone_core_run_stun_tests(LinphoneCore *lc, LinphoneCall *call);
224 int linphone_core_gather_ice_candidates(LinphoneCore *lc, LinphoneCall *call);
225 void linphone_core_update_local_media_description_from_ice(SalMediaDescription *desc, IceSession *session);
226 void linphone_core_update_ice_from_remote_media_description(LinphoneCall *call, const SalMediaDescription *md);
227
228 void linphone_core_send_initial_subscribes(LinphoneCore *lc);
229 void linphone_core_write_friends_config(LinphoneCore* lc);
230 void linphone_friend_write_to_config_file(struct _LpConfig *config, LinphoneFriend *lf, int index);
231 LinphoneFriend * linphone_friend_new_from_config_file(struct _LinphoneCore *lc, int index);
232
233 void linphone_proxy_config_update(LinphoneProxyConfig *cfg);
234 void linphone_proxy_config_get_contact(LinphoneProxyConfig *cfg, const char **ip, int *port);
235 LinphoneProxyConfig * linphone_core_lookup_known_proxy(LinphoneCore *lc, const LinphoneAddress *uri);
236 const char *linphone_core_find_best_identity(LinphoneCore *lc, const LinphoneAddress *to, const char **route);
237 int linphone_core_get_local_ip_for(int type, const char *dest, char *result);
238
239 LinphoneProxyConfig *linphone_proxy_config_new_from_config_file(struct _LpConfig *config, int index);
240 void linphone_proxy_config_write_to_config_file(struct _LpConfig* config,LinphoneProxyConfig *obj, int index);
241
242 int linphone_proxy_config_normalize_number(LinphoneProxyConfig *cfg, const char *username, char *result, size_t result_len);
243
244 void linphone_core_text_received(LinphoneCore *lc, const char *from, const char *msg);
245
246 void linphone_core_play_tone(LinphoneCore *lc);
247
248 void linphone_call_init_stats(LinphoneCallStats *stats, int type);
249
250 void linphone_call_init_audio_stream(LinphoneCall *call);
251 void linphone_call_init_video_stream(LinphoneCall *call);
252 void linphone_call_init_media_streams(LinphoneCall *call);
253 void linphone_call_start_media_streams(LinphoneCall *call, bool_t all_inputs_muted, bool_t send_ringbacktone);
254 void linphone_call_start_media_streams_for_ice_gathering(LinphoneCall *call);
255 void linphone_call_stop_media_streams(LinphoneCall *call);
256 void linphone_call_delete_ice_session(LinphoneCall *call);
257
258 const char * linphone_core_get_identity(LinphoneCore *lc);
259 const char * linphone_core_get_route(LinphoneCore *lc);
260 void linphone_core_start_waiting(LinphoneCore *lc, const char *purpose);
261 void linphone_core_update_progress(LinphoneCore *lc, const char *purpose, float progresses);
262 void linphone_core_stop_waiting(LinphoneCore *lc);
263
264 int linphone_core_proceed_with_invite_if_ready(LinphoneCore *lc, LinphoneCall *call, LinphoneProxyConfig *dest_proxy);
265 int linphone_core_start_invite(LinphoneCore *lc, LinphoneCall *call, LinphoneProxyConfig *dest_proxy);
266 int linphone_core_start_update_call(LinphoneCore *lc, LinphoneCall *call);
267 int linphone_core_start_accept_call_update(LinphoneCore *lc, LinphoneCall *call);
268 void linphone_core_start_refered_call(LinphoneCore *lc, LinphoneCall *call);
269 void linphone_core_notify_incoming_call(LinphoneCore *lc, LinphoneCall *call);
270 extern SalCallbacks linphone_sal_callbacks;
271 void linphone_proxy_config_set_error(LinphoneProxyConfig *cfg, LinphoneReason error);
272 bool_t linphone_core_rtcp_enabled(const LinphoneCore *lc);
273
274 LinphoneCall * is_a_linphone_call(void *user_pointer);
275 LinphoneProxyConfig * is_a_linphone_proxy_config(void *user_pointer);
276
277 static const int linphone_proxy_config_magic=0x7979;
278
279 struct _LinphoneProxyConfig
280 {
281         int magic;
282         struct _LinphoneCore *lc;
283         char *reg_proxy;
284         char *reg_identity;
285         char *reg_route;
286         char *realm;
287         char *contact_params;
288         int expires;
289         int reg_time;
290         SalOp *op;
291         char *type;
292         struct _SipSetupContext *ssctx;
293         int auth_failures;
294         char *dial_prefix;
295         LinphoneRegistrationState state;
296         SalOp *publish_op;
297         bool_t commit;
298         bool_t reg_sendregister;
299         bool_t publish;
300         bool_t dial_escape_plus;
301         void* user_data;
302         time_t deletion_date;
303         LinphoneReason error;
304 };
305
306 struct _LinphoneAuthInfo
307 {
308         char *username;
309         char *realm;
310         char *userid;
311         char *passwd;
312         char *ha1;
313         int usecount;
314         time_t last_use_time;
315         bool_t works;
316 };
317
318 struct _LinphoneChatRoom{
319         struct _LinphoneCore *lc;
320         char  *peer;
321         LinphoneAddress *peer_url;
322         SalOp *op;
323         void * user_data;
324 };
325
326 struct _LinphoneFriend{
327         LinphoneAddress *uri;
328         SalOp *insub;
329         SalOp *outsub;
330         LinphoneSubscribePolicy pol;
331         LinphoneOnlineStatus status;
332         struct _LinphoneCore *lc;
333         BuddyInfo *info;
334         char *refkey;
335         bool_t subscribe;
336         bool_t subscribe_active;
337         bool_t inc_subscribe_pending;
338         bool_t commit;
339 };
340
341
342 typedef struct sip_config
343 {
344         char *contact;
345         char *guessed_contact;
346         MSList *proxies;
347         MSList *deleted_proxies;
348         int inc_timeout;        /*timeout after an un-answered incoming call is rejected*/
349         unsigned int keepalive_period; /* interval in ms between keep alive messages sent to the proxy server*/
350         LCSipTransports transports;
351         bool_t use_info;
352         bool_t use_rfc2833;     /*force RFC2833 to be sent*/
353         bool_t guess_hostname;
354         bool_t loopback_only;
355         bool_t ipv6_enabled;
356         bool_t sdp_200_ack;
357         bool_t register_only_when_network_is_up;
358         bool_t ping_with_options;
359         bool_t auto_net_state_mon;
360 } sip_config_t;
361
362 typedef struct rtp_config
363 {
364         int audio_rtp_port;
365         int video_rtp_port;
366         int audio_jitt_comp;  /*jitter compensation*/
367         int video_jitt_comp;  /*jitter compensation*/
368         int nortp_timeout;
369         bool_t rtp_no_xmit_on_audio_mute;
370                               /* stop rtp xmit when audio muted */
371 }rtp_config_t;
372
373
374
375 typedef struct net_config
376 {
377         char *nat_address; /* may be IP or host name */
378         char *nat_address_ip; /* ip translated from nat_address */
379         char *stun_server;
380         char *relay;
381         int download_bw;
382         int upload_bw;
383         int firewall_policy;
384         int mtu;
385         int down_ptime;
386         bool_t nat_sdp_only;
387 }net_config_t;
388
389
390 typedef struct sound_config
391 {
392         struct _MSSndCard * ring_sndcard;       /* the playback sndcard currently used */
393         struct _MSSndCard * play_sndcard;       /* the playback sndcard currently used */
394         struct _MSSndCard * capt_sndcard; /* the capture sndcard currently used */
395         struct _MSSndCard * lsd_card; /* dummy playback card for Linphone Sound Daemon extension */
396         const char **cards;
397         int latency;    /* latency in samples of the current used sound device */
398         char rec_lev;
399         char play_lev;
400         char ring_lev;
401         char soft_play_lev;
402         char source;
403         char *local_ring;
404         char *remote_ring;
405         char *ringback_tone;
406         bool_t ec;
407         bool_t ea;
408         bool_t agc;
409 } sound_config_t;
410
411 typedef struct codecs_config
412 {
413         MSList *audio_codecs;  /* list of audio codecs in order of preference*/
414         MSList *video_codecs;   /* for later use*/
415 }codecs_config_t;
416
417 typedef struct video_config{
418         struct _MSWebCam *device;
419         const char **cams;
420         MSVideoSize vsize;
421         bool_t capture;
422         bool_t show_local;
423         bool_t display;
424         bool_t selfview; /*during calls*/
425         const char *displaytype;
426 }video_config_t;
427
428 typedef struct ui_config
429 {
430         int is_daemon;
431         int is_applet;
432         unsigned int timer_id;  /* the timer id for registration */
433 }ui_config_t;
434
435
436
437 typedef struct autoreplier_config
438 {
439         int enabled;
440         int after_seconds;              /* accept the call after x seconds*/
441         int max_users;                  /* maximum number of user that can call simultaneously */
442         int max_rec_time;       /* the max time of incoming voice recorded */
443         int max_rec_msg;                /* maximum number of recorded messages */
444         const char *message;            /* the path of the file to be played */
445 }autoreplier_config_t;
446
447 struct _LinphoneConference{
448         MSAudioConference *conf;
449         AudioStream *local_participant;
450         MSAudioEndpoint *local_endpoint;
451         RtpProfile *local_dummy_profile;
452         bool_t local_muted;
453 };
454
455 typedef struct _LinphoneConference LinphoneConference;
456
457 struct _LinphoneCore
458 {
459         LinphoneCoreVTable vtable;
460         Sal *sal;
461         LinphoneGlobalState state;
462         struct _LpConfig *config;
463         net_config_t net_conf;
464         sip_config_t sip_conf;
465         rtp_config_t rtp_conf;
466         sound_config_t sound_conf;
467         video_config_t video_conf;
468         codecs_config_t codecs_conf;
469         ui_config_t ui_conf;
470         autoreplier_config_t autoreplier_conf;
471         MSList *payload_types;
472         int dyn_pt;
473         LinphoneProxyConfig *default_proxy;
474         MSList *friends;
475         MSList *auth_info;
476         struct _RingStream *ringstream;
477         time_t dmfs_playing_start_time;
478         LCCallbackObj preview_finished_cb;
479         LinphoneCall *current_call;   /* the current call */
480         MSList *calls;                          /* all the processed calls */
481         MSList *queued_calls;   /* used by the autoreplier */
482         MSList *call_logs;
483         MSList *chatrooms;
484         int max_call_logs;
485         int missed_calls;
486         VideoPreview *previewstream;
487         struct _MSEventQueue *msevq;
488         LinphoneRtpTransportFactories *rtptf;
489         MSList *bl_reqs;
490         MSList *subscribers;    /* unknown subscribers */
491         int minutes_away;
492         LinphoneOnlineStatus presence_mode;
493         char *alt_contact;
494         void *data;
495         char *play_file;
496         char *rec_file;
497         time_t prevtime;
498         int audio_bw;
499         LinphoneWaitingCallback wait_cb;
500         void *wait_ctx;
501         unsigned long video_window_id;
502         unsigned long preview_window_id;
503         time_t netup_time; /*time when network went reachable */
504         struct _EcCalibrator *ecc;
505         MSList *hooks;
506         LinphoneConference conf_ctx;
507         char* zrtp_secrets_cache;
508         LinphoneVideoPolicy video_policy;
509         bool_t use_files;
510         bool_t apply_nat_settings;
511         bool_t initial_subscribes_sent;
512         bool_t bl_refresh;
513         
514         bool_t preview_finished;
515         bool_t auto_net_state_mon;
516         bool_t network_reachable;
517         bool_t use_preview_window;
518         
519         bool_t ringstream_autorelease;
520         bool_t pad[3];
521         int device_rotation;
522         int max_calls;
523         LinphoneTunnel *tunnel;
524 };
525
526 LinphoneTunnel *linphone_core_tunnel_new(LinphoneCore *lc);
527 void linphone_tunnel_destroy(LinphoneTunnel *tunnel);
528 void linphone_tunnel_configure(LinphoneTunnel *tunnel);
529 void linphone_tunnel_enable_logs_with_handler(LinphoneTunnel *tunnel, bool_t enabled, OrtpLogFunc logHandler);
530         
531 bool_t linphone_core_can_we_add_call(LinphoneCore *lc);
532 int linphone_core_add_call( LinphoneCore *lc, LinphoneCall *call);
533 int linphone_core_del_call( LinphoneCore *lc, LinphoneCall *call);
534 int linphone_core_set_as_current_call(LinphoneCore *lc, LinphoneCall *call);
535 int linphone_core_get_calls_nb(const LinphoneCore *lc);
536
537 void linphone_core_set_state(LinphoneCore *lc, LinphoneGlobalState gstate, const char *message);
538
539 SalMediaDescription *create_local_media_description(LinphoneCore *lc, LinphoneCall *call);
540 void update_local_media_description(LinphoneCore *lc, LinphoneCall *call);
541
542 void linphone_core_update_streams(LinphoneCore *lc, LinphoneCall *call, SalMediaDescription *new_md);
543
544 bool_t linphone_core_is_payload_type_usable_for_bandwidth(LinphoneCore *lc, PayloadType *pt,  int bandwidth_limit);
545
546 #define linphone_core_ready(lc) ((lc)->state!=LinphoneGlobalStartup)
547 void _linphone_core_configure_resolver();
548
549 struct _EcCalibrator{
550         ms_thread_t thread;
551         MSSndCard *play_card,*capt_card;
552         MSFilter *sndread,*det,*rec;
553         MSFilter *play, *gen, *sndwrite,*resampler;
554         MSTicker *ticker;
555         LinphoneEcCalibrationCallback cb;
556         void *cb_data;
557         int recv_count;
558         int sent_count;
559         int64_t acc;
560         int delay;
561         unsigned int rate;
562         LinphoneEcCalibratorStatus status;
563 };
564
565 typedef struct _EcCalibrator EcCalibrator;
566
567 LinphoneEcCalibratorStatus ec_calibrator_get_status(EcCalibrator *ecc);
568
569 void ec_calibrator_destroy(EcCalibrator *ecc);
570
571 void linphone_call_background_tasks(LinphoneCall *call, bool_t one_second_elapsed);
572 void linphone_core_preempt_sound_resources(LinphoneCore *lc);
573 /*conferencing subsystem*/
574 void _post_configure_audio_stream(AudioStream *st, LinphoneCore *lc, bool_t muted);
575 /* When a conference participant pause the conference he may send a music.
576  * We don't want to hear that music or to send it to the other participants.
577  * Use muted=yes to handle this case.
578  */
579 void linphone_call_add_to_conf(LinphoneCall *call, bool_t muted);
580 void linphone_call_remove_from_conf(LinphoneCall *call);
581 void linphone_core_conference_check_uninit(LinphoneCore *lc);
582 bool_t linphone_core_sound_resources_available(LinphoneCore *lc);
583 void linphone_core_notify_refer_state(LinphoneCore *lc, LinphoneCall *referer, LinphoneCall *newcall);
584 unsigned int linphone_core_get_audio_features(LinphoneCore *lc);
585
586 void __linphone_core_invalidate_registers(LinphoneCore* lc);
587 void _linphone_core_codec_config_write(LinphoneCore *lc);
588
589 #define HOLD_OFF        (0)
590 #define HOLD_ON         (1)
591
592 #ifndef NB_MAX_CALLS
593 #define NB_MAX_CALLS    (10)
594 #endif
595 void call_logs_write_to_config_file(LinphoneCore *lc);
596
597
598
599 #ifdef __cplusplus
600 }
601 #endif
602
603 #endif /* _PRIVATE_H */