]> sjero.net Git - linphone/blob - coreapi/linphonecore.h
2c0aa16653b3bc21482c9c624715879036b7f785
[linphone] / coreapi / linphonecore.h
1 /*
2 linphone
3 Copyright (C) 2000 - 2010 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 #ifndef LINPHONECORE_H
20 #define LINPHONECORE_H
21
22 #include "ortp/ortp.h"
23 #include "ortp/payloadtype.h"
24 #include "mediastreamer2/mscommon.h"
25 #include "mediastreamer2/msvideo.h"
26
27 #ifdef IN_LINPHONE
28 #include "sipsetup.h"
29 #else
30 #include "linphone/sipsetup.h"
31 #endif
32
33 #define LINPHONE_IPADDR_SIZE 64
34 #define LINPHONE_HOSTNAME_SIZE 128
35
36 #ifdef __cplusplus
37 extern "C" {
38 #endif
39
40 struct _MSSndCard;
41 struct _LinphoneCore;
42 /**
43  * Linphone core main object created by function linphone_core_new() .
44  * @ingroup initializing
45  */
46 typedef struct _LinphoneCore LinphoneCore;
47 struct SalOp;
48
49 struct _LpConfig;
50
51
52 struct _LCSipTransports{
53         int udp_port;
54         int tcp_port;
55         int dtls_port;
56         int tls_port;
57 };
58
59 typedef struct _LCSipTransports LCSipTransports;
60
61 /**
62  * Object that represents a SIP address.
63  *
64  * The LinphoneAddress is an opaque object to represents SIP addresses, ie
65  * the content of SIP's 'from' and 'to' headers.
66  * A SIP address is made of display name, username, domain name, port, and various
67  * uri headers (such as tags). It looks like 'Alice <sip:alice@example.net>'.
68  * The LinphoneAddress has methods to extract and manipulate all parts of the address.
69  * When some part of the address (for example the username) is empty, the accessor methods
70  * return NULL.
71  *
72  * @ingroup linphone_address
73  * @var LinphoneAddress
74  */
75 typedef struct SalAddress LinphoneAddress;
76 #ifdef IN_LINPHONE
77 #include "linphonefriend.h"
78 #else
79 #include "linphone/linphonefriend.h"
80 #endif
81
82 LinphoneAddress * linphone_address_new(const char *uri);
83 LinphoneAddress * linphone_address_clone(const LinphoneAddress *uri);
84 const char *linphone_address_get_scheme(const LinphoneAddress *u);
85 const char *linphone_address_get_display_name(const LinphoneAddress* u);
86 const char *linphone_address_get_username(const LinphoneAddress *u);
87 const char *linphone_address_get_domain(const LinphoneAddress *u);
88 /**
89  * Get port number as an integer value.
90  *
91  */
92 int linphone_address_get_port_int(const LinphoneAddress *u);
93 /**
94  * Get port number, null if not present.
95  */
96 const char* linphone_address_get_port(const LinphoneAddress *u);
97 void linphone_address_set_display_name(LinphoneAddress *u, const char *display_name);
98 void linphone_address_set_username(LinphoneAddress *uri, const char *username);
99 void linphone_address_set_domain(LinphoneAddress *uri, const char *host);
100 void linphone_address_set_port(LinphoneAddress *uri, const char *port);
101 void linphone_address_set_port_int(LinphoneAddress *uri, int port);
102 /*remove tags, params etc... so that it is displayable to the user*/
103 void linphone_address_clean(LinphoneAddress *uri);
104 char *linphone_address_as_string(const LinphoneAddress *u);
105 char *linphone_address_as_string_uri_only(const LinphoneAddress *u);
106 bool_t linphone_address_weak_equal(const LinphoneAddress *a1, const LinphoneAddress *a2);
107 void linphone_address_destroy(LinphoneAddress *u);
108
109 struct _SipSetupContext;
110
111
112 /**
113  * Enum representing the direction of a call.
114  * @ingroup call_logs
115 **/
116 enum _LinphoneCallDir {
117         LinphoneCallOutgoing, /**< outgoing calls*/
118         LinphoneCallIncoming  /**< incoming calls*/
119 };
120
121 /**
122  * Typedef for enum
123  * @ingroup call_logs
124 **/
125 typedef enum _LinphoneCallDir LinphoneCallDir;
126
127 /**
128  * Enum representing the status of a call
129  * @ingroup call_logs
130 **/
131 typedef enum _LinphoneCallStatus {
132         LinphoneCallSuccess, /**< The call was sucessful*/
133         LinphoneCallAborted, /**< The call was aborted */
134         LinphoneCallMissed, /**< The call was missed (unanswered)*/
135         LinphoneCallDeclined /**< The call was declined, either locally or by remote end*/
136 } LinphoneCallStatus;
137
138 /**
139  * Structure representing a call log.
140  *
141  * @ingroup call_logs
142  *
143 **/
144 typedef struct _LinphoneCallLog{
145         LinphoneCallDir dir; /**< The direction of the call*/
146         LinphoneCallStatus status; /**< The status of the call*/
147         LinphoneAddress *from; /**<Originator of the call as a LinphoneAddress object*/
148         LinphoneAddress *to; /**<Destination of the call as a LinphoneAddress object*/
149         char start_date[128]; /**<Human readable string containg the start date*/
150         int duration; /**<Duration of the call in seconds*/
151         char *refkey;
152         void *user_pointer;
153         rtp_stats_t local_stats;
154         rtp_stats_t remote_stats;
155         float quality;
156         struct _LinphoneCore *lc;
157 } LinphoneCallLog;
158
159 enum LinphoneMediaEncryption {
160         LinphoneMediaEncryptionNone,
161         LinphoneMediaEncryptionSRTP,
162         LinphoneMediaEncryptionZRTP
163 };
164
165 typedef enum LinphoneMediaEncryption LinphoneMediaEncryption;
166
167 /*public: */
168 void linphone_call_log_set_user_pointer(LinphoneCallLog *cl, void *up);
169 void *linphone_call_log_get_user_pointer(const LinphoneCallLog *cl);
170 void linphone_call_log_set_ref_key(LinphoneCallLog *cl, const char *refkey);
171 const char *linphone_call_log_get_ref_key(const LinphoneCallLog *cl);
172 const rtp_stats_t *linphone_call_log_get_local_stats(const LinphoneCallLog *cl);
173 const rtp_stats_t *linphone_call_log_get_remote_stats(const LinphoneCallLog *cl);
174 char * linphone_call_log_to_str(LinphoneCallLog *cl);
175
176
177 /**
178  * The LinphoneCallParams is an object containing various call related parameters.
179  * It can be used to retrieve parameters from a currently running call or modify the call's characteristics
180  * dynamically.
181 **/
182 struct _LinphoneCallParams;
183 typedef struct _LinphoneCallParams LinphoneCallParams;
184
185 LinphoneCallParams * linphone_call_params_copy(const LinphoneCallParams *cp);
186 void linphone_call_params_enable_video(LinphoneCallParams *cp, bool_t enabled);
187 bool_t linphone_call_params_video_enabled(const LinphoneCallParams *cp);
188 LinphoneMediaEncryption linphone_call_params_get_media_encryption(const LinphoneCallParams *cp);
189 void linphone_call_params_set_media_encryption(LinphoneCallParams *cp, LinphoneMediaEncryption e);
190 void linphone_call_params_enable_early_media_sending(LinphoneCallParams *cp, bool_t enabled);
191 bool_t linphone_call_params_early_media_sending_enabled(const LinphoneCallParams *cp);
192 bool_t linphone_call_params_local_conference_mode(const LinphoneCallParams *cp);
193 void linphone_call_params_set_audio_bandwidth_limit(LinphoneCallParams *cp, int bw);
194 void linphone_call_params_destroy(LinphoneCallParams *cp);
195
196 /**
197  * Enum describing failure reasons.
198  * @ingroup initializing
199 **/
200 enum _LinphoneReason{
201         LinphoneReasonNone,
202         LinphoneReasonNoResponse, /**<No response received from remote*/
203         LinphoneReasonBadCredentials, /**<Authentication failed due to bad or missing credentials*/
204         LinphoneReasonDeclined, /**<The call has been declined*/
205         LinphoneReasonNotFound,
206 };
207
208 typedef enum _LinphoneReason LinphoneReason;
209
210 const char *linphone_reason_to_string(LinphoneReason err);
211
212 /**
213  * Structure describing policy regarding video streams establishments.
214 **/
215 struct _LinphoneVideoPolicy{
216         bool_t automatically_initiate; /**<Whether video shall be automatically proposed for outgoing calls.*/ 
217         bool_t automatically_accept; /**<Whether video shall be automatically accepted for incoming calls*/
218         bool_t unused[2];
219 };
220
221 typedef struct _LinphoneVideoPolicy LinphoneVideoPolicy;
222
223 /**
224  * The LinphoneCall object represents a call issued or received by the LinphoneCore
225 **/
226 struct _LinphoneCall;
227 typedef struct _LinphoneCall LinphoneCall;
228
229 /**
230  * LinphoneCallState enum represents the different state a call can reach into.
231  * The application is notified of state changes through the LinphoneCoreVTable::call_state_changed callback.
232  * @ingroup call_control
233 **/
234 typedef enum _LinphoneCallState{
235         LinphoneCallIdle,                                       /**<Initial call state */
236         LinphoneCallIncomingReceived, /**<This is a new incoming call */
237         LinphoneCallOutgoingInit, /**<An outgoing call is started */
238         LinphoneCallOutgoingProgress, /**<An outgoing call is in progress */
239         LinphoneCallOutgoingRinging, /**<An outgoing call is ringing at remote end */
240         LinphoneCallOutgoingEarlyMedia, /**<An outgoing call is proposed early media */
241         LinphoneCallConnected, /**<Connected, the call is answered */
242         LinphoneCallStreamsRunning, /**<The media streams are established and running*/
243         LinphoneCallPausing, /**<The call is pausing at the initiative of local end */
244         LinphoneCallPaused, /**< The call is paused, remote end has accepted the pause */
245         LinphoneCallResuming, /**<The call is being resumed by local end*/
246         LinphoneCallRefered, /**<The call is being transfered to another party, resulting in a new outgoing call to follow immediately*/
247         LinphoneCallError, /**<The call encountered an error*/
248         LinphoneCallEnd, /**<The call ended normally*/
249         LinphoneCallPausedByRemote, /**<The call is paused by remote end*/
250         LinphoneCallUpdatedByRemote, /**<The call's parameters change is requested by remote end, used for example when video is added by remote */
251         LinphoneCallIncomingEarlyMedia, /**<We are proposing early media to an incoming call */
252         LinphoneCallUpdated, /**<The remote accepted the call update initiated by us */
253         LinphoneCallReleased /**< The call object is no more retained by the core */
254 } LinphoneCallState;
255
256 const char *linphone_call_state_to_string(LinphoneCallState cs);
257
258 LinphoneCore *linphone_call_get_core(const LinphoneCall *call);
259 LinphoneCallState linphone_call_get_state(const LinphoneCall *call);
260 bool_t linphone_call_asked_to_autoanswer(LinphoneCall *call);
261 const LinphoneAddress * linphone_core_get_current_call_remote_address(struct _LinphoneCore *lc);
262 const LinphoneAddress * linphone_call_get_remote_address(const LinphoneCall *call);
263 char *linphone_call_get_remote_address_as_string(const LinphoneCall *call);
264 LinphoneCallDir linphone_call_get_dir(const LinphoneCall *call);
265 LinphoneCall * linphone_call_ref(LinphoneCall *call);
266 void linphone_call_unref(LinphoneCall *call);
267 LinphoneCallLog *linphone_call_get_call_log(const LinphoneCall *call);
268 const char *linphone_call_get_refer_to(const LinphoneCall *call);
269 bool_t linphone_call_has_transfer_pending(const LinphoneCall *call);
270 LinphoneCall *linphone_call_get_replaced_call(LinphoneCall *call);
271 int linphone_call_get_duration(const LinphoneCall *call);
272 const LinphoneCallParams * linphone_call_get_current_params(const LinphoneCall *call);
273 const LinphoneCallParams * linphone_call_get_remote_params(LinphoneCall *call);
274 void linphone_call_enable_camera(LinphoneCall *lc, bool_t enabled);
275 bool_t linphone_call_camera_enabled(const LinphoneCall *lc);
276 int linphone_call_take_video_snapshot(LinphoneCall *call, const char *file);
277 LinphoneReason linphone_call_get_reason(const LinphoneCall *call);
278 const char *linphone_call_get_remote_user_agent(LinphoneCall *call);
279 float linphone_call_get_play_volume(LinphoneCall *call);
280 float linphone_call_get_record_volume(LinphoneCall *call);
281 float linphone_call_get_current_quality(LinphoneCall *call);
282 float linphone_call_get_average_quality(LinphoneCall *call);
283 const char* linphone_call_get_authentication_token(LinphoneCall *call);
284 bool_t linphone_call_get_authentication_token_verified(LinphoneCall *call);
285 void linphone_call_set_authentication_token_verified(LinphoneCall *call, bool_t verified);
286 void linphone_call_send_vfu_request(LinphoneCall *call);
287 void *linphone_call_get_user_pointer(LinphoneCall *call);
288 void linphone_call_set_user_pointer(LinphoneCall *call, void *user_pointer);
289 /**
290  * Enables or disable echo cancellation for this call
291  * @param call
292  * @param val
293  *
294  * @ingroup media_parameters
295 **/
296 void linphone_call_enable_echo_cancellation(LinphoneCall *call, bool_t val) ;
297 /**
298  * Returns TRUE if echo cancellation is enabled.
299  *
300  * @ingroup media_parameters
301 **/
302 bool_t linphone_call_echo_cancellation_enabled(LinphoneCall *lc);
303 /**
304  * Enables or disable echo limiter for this call
305  * @param call
306  * @param val
307  *
308  * @ingroup media_parameters
309 **/
310 void linphone_call_enable_echo_limiter(LinphoneCall *call, bool_t val);
311 /**
312  * Returns TRUE if echo limiter is enabled.
313  *
314  * @ingroup media_parameters
315 **/
316 bool_t linphone_call_echo_limiter_enabled(const LinphoneCall *call);
317
318 /*keep this in sync with mediastreamer2/msvolume.h*/
319 #define LINPHONE_VOLUME_DB_LOWEST (-120) /**< Lowest measured that can be returned.*/
320
321 /**
322  * @addtogroup proxies
323  * @{
324 **/
325 /**
326  * The LinphoneProxyConfig object represents a proxy configuration to be used
327  * by the LinphoneCore object.
328  * Its fields must not be used directly in favour of the accessors methods.
329  * Once created and filled properly the LinphoneProxyConfig can be given to
330  * LinphoneCore with linphone_core_add_proxy_config().
331  * This will automatically triggers the registration, if enabled.
332  *
333  * The proxy configuration are persistent to restarts because they are saved
334  * in the configuration file. As a consequence, after linphone_core_new() there
335  * might already be a list of configured proxy that can be examined with
336  * linphone_core_get_proxy_config_list().
337  *
338  * The default proxy (see linphone_core_set_default_proxy() ) is the one of the list
339  * that is used by default for calls.
340 **/
341 typedef struct _LinphoneProxyConfig LinphoneProxyConfig;
342
343 /**
344  * LinphoneRegistrationState describes proxy registration states.
345 **/
346 typedef enum _LinphoneRegistrationState{
347         LinphoneRegistrationNone, /**<Initial state for registrations */
348         LinphoneRegistrationProgress, /**<Registration is in progress */
349         LinphoneRegistrationOk, /**< Registration is successful */
350         LinphoneRegistrationCleared, /**< Unregistration succeeded */
351         LinphoneRegistrationFailed      /**<Registration failed */
352 }LinphoneRegistrationState;
353
354 /**
355  * Human readable version of the #LinphoneRegistrationState
356  * @param cs sate
357  */
358 const char *linphone_registration_state_to_string(LinphoneRegistrationState cs);
359
360 LinphoneProxyConfig *linphone_proxy_config_new(void);
361 int linphone_proxy_config_set_server_addr(LinphoneProxyConfig *obj, const char *server_addr);
362 int linphone_proxy_config_set_identity(LinphoneProxyConfig *obj, const char *identity);
363 int linphone_proxy_config_set_route(LinphoneProxyConfig *obj, const char *route);
364 void linphone_proxy_config_expires(LinphoneProxyConfig *obj, int expires);
365 /**
366  * Indicates  either or not, REGISTRATION must be issued for this #LinphoneProxyConfig .
367  * <br> In case this #LinphoneProxyConfig has been added to #LinphoneCore, follows the linphone_proxy_config_edit() rule.
368  * @param obj object pointer
369  * @param val if true, registration will be engaged
370  */
371 void linphone_proxy_config_enable_register(LinphoneProxyConfig *obj, bool_t val);
372 #define linphone_proxy_config_enableregister linphone_proxy_config_enable_register
373 void linphone_proxy_config_edit(LinphoneProxyConfig *obj);
374 int linphone_proxy_config_done(LinphoneProxyConfig *obj);
375 /**
376  * Indicates  either or not, PUBLISH must be issued for this #LinphoneProxyConfig .
377  * <br> In case this #LinphoneProxyConfig has been added to #LinphoneCore, follows the linphone_proxy_config_edit() rule.
378  * @param obj object pointer
379  * @param val if true, publish will be engaged
380  *
381  */
382 void linphone_proxy_config_enable_publish(LinphoneProxyConfig *obj, bool_t val);
383 void linphone_proxy_config_set_dial_escape_plus(LinphoneProxyConfig *cfg, bool_t val);
384 void linphone_proxy_config_set_dial_prefix(LinphoneProxyConfig *cfg, const char *prefix);
385
386 LinphoneRegistrationState linphone_proxy_config_get_state(const LinphoneProxyConfig *obj);
387 bool_t linphone_proxy_config_is_registered(const LinphoneProxyConfig *obj);
388 const char *linphone_proxy_config_get_domain(const LinphoneProxyConfig *cfg);
389
390 const char *linphone_proxy_config_get_route(const LinphoneProxyConfig *obj);
391 const char *linphone_proxy_config_get_identity(const LinphoneProxyConfig *obj);
392 bool_t linphone_proxy_config_publish_enabled(const LinphoneProxyConfig *obj);
393 const char *linphone_proxy_config_get_addr(const LinphoneProxyConfig *obj);
394 int linphone_proxy_config_get_expires(const LinphoneProxyConfig *obj);
395 bool_t linphone_proxy_config_register_enabled(const LinphoneProxyConfig *obj);
396 void linphone_proxy_config_refresh_register(LinphoneProxyConfig *obj);
397 struct _LinphoneCore * linphone_proxy_config_get_core(const LinphoneProxyConfig *obj);
398
399 bool_t linphone_proxy_config_get_dial_escape_plus(const LinphoneProxyConfig *cfg);
400 const char * linphone_proxy_config_get_dial_prefix(const LinphoneProxyConfig *cfg);
401
402 LinphoneReason linphone_proxy_config_get_error(const LinphoneProxyConfig *cfg);
403
404 /* destruction is called automatically when removing the proxy config */
405 void linphone_proxy_config_destroy(LinphoneProxyConfig *cfg);
406 void linphone_proxy_config_set_sip_setup(LinphoneProxyConfig *cfg, const char *type);
407 SipSetupContext *linphone_proxy_config_get_sip_setup_context(LinphoneProxyConfig *cfg);
408 SipSetup *linphone_proxy_config_get_sip_setup(LinphoneProxyConfig *cfg);
409 /**
410  * normalize a human readable phone number into a basic string. 888-444-222 becomes 888444222
411  */
412 int linphone_proxy_config_normalize_number(LinphoneProxyConfig *proxy, const char *username, char *result, size_t result_len);
413 /*
414  *  attached a user data to a proxy config
415  */
416 void linphone_proxy_config_set_user_data(LinphoneProxyConfig *cr, void * ud);
417 /*
418  *  get user data to a proxy config. return null if any
419  */
420 void * linphone_proxy_config_get_user_data(LinphoneProxyConfig *cr);
421
422 /**
423  * @}
424 **/
425
426 typedef struct _LinphoneAccountCreator{
427         struct _LinphoneCore *lc;
428         struct _SipSetupContext *ssctx;
429         char *username;
430         char *password;
431         char *domain;
432         char *route;
433         char *email;
434         int suscribe;
435         bool_t succeeded;
436 }LinphoneAccountCreator;
437
438 LinphoneAccountCreator *linphone_account_creator_new(struct _LinphoneCore *core, const char *type);
439 void linphone_account_creator_set_username(LinphoneAccountCreator *obj, const char *username);
440 void linphone_account_creator_set_password(LinphoneAccountCreator *obj, const char *password);
441 void linphone_account_creator_set_domain(LinphoneAccountCreator *obj, const char *domain);
442 void linphone_account_creator_set_route(LinphoneAccountCreator *obj, const char *route);
443 void linphone_account_creator_set_email(LinphoneAccountCreator *obj, const char *email);
444 void linphone_account_creator_set_suscribe(LinphoneAccountCreator *obj, int suscribre);
445 const char * linphone_account_creator_get_username(LinphoneAccountCreator *obj);
446 const char * linphone_account_creator_get_domain(LinphoneAccountCreator *obj);
447 int linphone_account_creator_test_existence(LinphoneAccountCreator *obj);
448 int linphone_account_creator_test_validation(LinphoneAccountCreator *obj);
449 LinphoneProxyConfig * linphone_account_creator_validate(LinphoneAccountCreator *obj);
450 void linphone_account_creator_destroy(LinphoneAccountCreator *obj);
451
452 struct _LinphoneAuthInfo;
453
454 /**
455  * @ingroup authentication
456  * Object holding authentication information.
457  *
458  * @note The object's fields should not be accessed directly. Prefer using
459  * the accessor methods.
460  *
461  * In most case, authentication information consists of a username and password.
462  * Sometimes, a userid is required by proxy, and realm can be useful to discriminate
463  * different SIP domains.
464  *
465  * Once created and filled, a LinphoneAuthInfo must be added to the LinphoneCore in
466  * order to become known and used automatically when needed.
467  * Use linphone_core_add_auth_info() for that purpose.
468  *
469  * The LinphoneCore object can take the initiative to request authentication information
470  * when needed to the application through the auth_info_requested callback of the
471  * LinphoneCoreVTable structure.
472  *
473  * The application can respond to this information request later using
474  * linphone_core_add_auth_info(). This will unblock all pending authentication
475  * transactions and retry them with authentication headers.
476  *
477 **/
478 typedef struct _LinphoneAuthInfo LinphoneAuthInfo;
479
480 LinphoneAuthInfo *linphone_auth_info_new(const char *username, const char *userid,
481                 const char *passwd, const char *ha1,const char *realm);
482 void linphone_auth_info_set_passwd(LinphoneAuthInfo *info, const char *passwd);
483 void linphone_auth_info_set_username(LinphoneAuthInfo *info, const char *username);
484 void linphone_auth_info_set_userid(LinphoneAuthInfo *info, const char *userid);
485
486 const char *linphone_auth_info_get_username(const LinphoneAuthInfo *i);
487 const char *linphone_auth_info_get_passwd(const LinphoneAuthInfo *i);
488 const char *linphone_auth_info_get_userid(const LinphoneAuthInfo *i);
489
490 /* you don't need those function*/
491 void linphone_auth_info_destroy(LinphoneAuthInfo *info);
492 LinphoneAuthInfo * linphone_auth_info_new_from_config_file(struct _LpConfig *config, int pos);
493
494
495 struct _LinphoneChatRoom;
496 /**
497  * @addtogroup chatroom
498  * @{
499  */
500 /**
501  * A chat room is the place where text messages are exchanged.
502  * <br> Can be created by linphone_core_create_chat_room().
503  */
504 typedef struct _LinphoneChatRoom LinphoneChatRoom;
505 /**
506  * Create a new chat room for messaging from a sip uri like sip:joe@sip.linphone.org
507  * @param lc #LinphoneCore object
508  * @param to destination address for messages
509  * @return #LinphoneChatRoom where messaging can take place.
510  */
511 LinphoneChatRoom * linphone_core_create_chat_room(LinphoneCore *lc, const char *to);
512 /**
513  * Destructor
514  * @param cr #LinphoneChatRoom object
515  */
516 void linphone_chat_room_destroy(LinphoneChatRoom *cr);
517
518
519 /**
520  * get peer address \link linphone_core_create_chat_room() associated to \endlink this #LinphoneChatRoom
521  * @param cr #LinphoneChatRoom object
522  * @return #LinphoneAddress peer address
523  */
524 const LinphoneAddress* linphone_chat_room_get_peer_address(LinphoneChatRoom *cr);
525 /**
526  * send a message to peer member of this chat room.
527  * @param cr #LinphoneChatRoom object
528  * @param msg message to be sent
529  */
530 void linphone_chat_room_send_message(LinphoneChatRoom *cr, const char *msg);
531
532 void linphone_chat_room_set_user_data(LinphoneChatRoom *cr, void * ud);
533 void * linphone_chat_room_get_user_data(LinphoneChatRoom *cr);
534
535 /**
536  * @}
537  */
538
539
540 /**
541  * @addtogroup initializing
542  * @{
543 **/
544
545 /**
546  * LinphoneGlobalState describes the global state of the LinphoneCore object.
547  * It is notified via the LinphoneCoreVTable::global_state_changed
548 **/
549 typedef enum _LinphoneGlobalState{
550         LinphoneGlobalOff,
551         LinphoneGlobalStartup,
552         LinphoneGlobalOn,
553         LinphoneGlobalShutdown
554 }LinphoneGlobalState;
555
556 const char *linphone_global_state_to_string(LinphoneGlobalState gs);
557
558
559 /**Call state notification callback prototype*/
560 typedef void (*LinphoneGlobalStateCb)(struct _LinphoneCore *lc, LinphoneGlobalState gstate, const char *message);
561 /**Call state notification callback prototype*/
562 typedef void (*LinphoneCallStateCb)(struct _LinphoneCore *lc, LinphoneCall *call, LinphoneCallState cstate, const char *message);
563 /**Call encryption changed callback prototype*/
564 typedef void (*CallEncryptionChangedCb)(struct _LinphoneCore *lc, LinphoneCall *call, bool_t on, const char *authentication_token);
565
566 /** @ingroup Proxies
567  * Registration state notification callback prototype
568  * */
569 typedef void (*LinphoneRegistrationStateCb)(struct _LinphoneCore *lc, LinphoneProxyConfig *cfg, LinphoneRegistrationState cstate, const char *message);
570 /** Callback prototype */
571 typedef void (*ShowInterfaceCb)(struct _LinphoneCore *lc);
572 /** Callback prototype */
573 typedef void (*DisplayStatusCb)(struct _LinphoneCore *lc, const char *message);
574 /** Callback prototype */
575 typedef void (*DisplayMessageCb)(struct _LinphoneCore *lc, const char *message);
576 /** Callback prototype */
577 typedef void (*DisplayUrlCb)(struct _LinphoneCore *lc, const char *message, const char *url);
578 /** Callback prototype */
579 typedef void (*LinphoneCoreCbFunc)(struct _LinphoneCore *lc,void * user_data);
580 /** Callback prototype */
581 typedef void (*NotifyReceivedCb)(struct _LinphoneCore *lc, LinphoneCall *call, const char *from, const char *event);
582 /**
583  * Report status change for a friend previously \link linphone_core_add_friend() added \endlink to #LinphoneCore.
584  * @param lc #LinphoneCore object .
585  * @param lf Updated #LinphoneFriend .
586  */
587 typedef void (*NotifyPresenceReceivedCb)(struct _LinphoneCore *lc, LinphoneFriend * lf);
588 /**
589  *  Reports that a new subscription request has been received and wait for a decision.
590  *  <br> Status on this subscription request is notified by \link linphone_friend_set_inc_subscribe_policy() changing policy \endlink for this friend
591  *      @param lc #LinphoneCore object
592  *      @param lf #LinphoneFriend corresponding to the subscriber
593  *      @param url of the subscriber
594  *  Callback prototype
595  *  */
596 typedef void (*NewSubscribtionRequestCb)(struct _LinphoneCore *lc, LinphoneFriend *lf, const char *url);
597 /** Callback prototype */
598 typedef void (*AuthInfoRequested)(struct _LinphoneCore *lc, const char *realm, const char *username);
599 /** Callback prototype */
600 typedef void (*CallLogUpdated)(struct _LinphoneCore *lc, struct _LinphoneCallLog *newcl);
601 /**
602  * Callback prototype
603  *
604  * @param lc #LinphoneCore object
605  * @param room #LinphoneChatRoom involved in this conversation. Can be be created by the framework in case \link #LinphoneAddress the from \endlink is not present in any chat room.
606  * @param from #LinphoneAddress from
607  * @param message incoming message
608  *  */
609 typedef void (*TextMessageReceived)(LinphoneCore *lc, LinphoneChatRoom *room, const LinphoneAddress *from, const char *message);
610 /** Callback prototype */
611 typedef void (*DtmfReceived)(struct _LinphoneCore* lc, LinphoneCall *call, int dtmf);
612 /** Callback prototype */
613 typedef void (*ReferReceived)(struct _LinphoneCore *lc, const char *refer_to);
614 /** Callback prototype */
615 typedef void (*BuddyInfoUpdated)(struct _LinphoneCore *lc, LinphoneFriend *lf);
616
617 /**
618  * This structure holds all callbacks that the application should implement.
619  *  None is mandatory.
620 **/
621 typedef struct _LinphoneVTable{
622         LinphoneGlobalStateCb global_state_changed; /**<Notifies globlal state changes*/
623         LinphoneRegistrationStateCb registration_state_changed;/**<Notifies registration state changes*/
624         LinphoneCallStateCb call_state_changed;/**<Notifies call state changes*/
625         NotifyPresenceReceivedCb notify_presence_recv; /**< Notify received presence events*/
626         NewSubscribtionRequestCb new_subscription_request; /**< Notify about pending subscription request */
627         AuthInfoRequested auth_info_requested; /**< Ask the application some authentication information */
628         CallLogUpdated call_log_updated; /**< Notifies that call log list has been updated */
629         TextMessageReceived text_received; /**< A text message has been received */
630         DtmfReceived dtmf_received; /**< A dtmf has been received received */
631         ReferReceived refer_received; /**< An out of call refer was received */
632         BuddyInfoUpdated buddy_info_updated; /**< a LinphoneFriend's BuddyInfo has changed*/
633         NotifyReceivedCb notify_recv; /**< Other notifications*/
634         DisplayStatusCb display_status; /**< Callback that notifies various events with human readable text.*/
635         DisplayMessageCb display_message;/**< Callback to display a message to the user */
636         DisplayMessageCb display_warning;/** Callback to display a warning to the user */
637         DisplayUrlCb display_url;
638         ShowInterfaceCb show; /**< Notifies the application that it should show up*/
639         CallEncryptionChangedCb call_encryption_changed; /**<Notifies on change in the encryption of call streams */
640 } LinphoneCoreVTable;
641
642 /**
643  * @}
644 **/
645
646 typedef struct _LCCallbackObj
647 {
648   LinphoneCoreCbFunc _func;
649   void * _user_data;
650 }LCCallbackObj;
651
652
653
654 typedef enum _LinphoneFirewallPolicy{
655         LinphonePolicyNoFirewall,
656         LinphonePolicyUseNatAddress,
657         LinphonePolicyUseStun
658 } LinphoneFirewallPolicy;
659
660 typedef enum _LinphoneWaitingState{
661         LinphoneWaitingStart,
662         LinphoneWaitingProgress,
663         LinphoneWaitingFinished
664 } LinphoneWaitingState;
665 typedef void * (*LinphoneWaitingCallback)(struct _LinphoneCore *lc, void *context, LinphoneWaitingState ws, const char *purpose, float progress);
666
667
668 /* THE main API */
669
670 void linphone_core_enable_logs(FILE *file);
671 void linphone_core_enable_logs_with_cb(OrtpLogFunc logfunc);
672 void linphone_core_disable_logs(void);
673 /*sets the user-agent string in sip messages, must be set before linphone_core_new() or linphone_core_init() */
674 void linphone_core_set_user_agent(const char *ua_name, const char *version);
675 const char *linphone_core_get_version(void);
676
677 LinphoneCore *linphone_core_new(const LinphoneCoreVTable *vtable,
678                                                 const char *config_path, const char *factory_config, void* userdata);
679
680 /* function to be periodically called in a main loop */
681 void linphone_core_iterate(LinphoneCore *lc);
682
683 LinphoneAddress * linphone_core_interpret_url(LinphoneCore *lc, const char *url);
684
685 LinphoneCall * linphone_core_invite(LinphoneCore *lc, const char *url);
686
687 LinphoneCall * linphone_core_invite_address(LinphoneCore *lc, const LinphoneAddress *addr);
688
689 LinphoneCall * linphone_core_invite_with_params(LinphoneCore *lc, const char *url, const LinphoneCallParams *params);
690
691 LinphoneCall * linphone_core_invite_address_with_params(LinphoneCore *lc, const LinphoneAddress *addr, const LinphoneCallParams *params);
692
693 int linphone_core_transfer_call(LinphoneCore *lc, LinphoneCall *call, const char *refer_to);
694
695 int linphone_core_transfer_call_to_another(LinphoneCore *lc, LinphoneCall *call, LinphoneCall *dest);
696
697 bool_t linphone_core_inc_invite_pending(LinphoneCore*lc);
698
699 bool_t linphone_core_in_call(const LinphoneCore *lc);
700
701 LinphoneCall *linphone_core_get_current_call(const LinphoneCore *lc);
702
703 int linphone_core_accept_call(LinphoneCore *lc, LinphoneCall *call);
704
705 int linphone_core_accept_call_with_params(LinphoneCore *lc, LinphoneCall *call, const LinphoneCallParams *params);
706
707 int linphone_core_terminate_call(LinphoneCore *lc, LinphoneCall *call);
708
709 int linphone_core_redirect_call(LinphoneCore *lc, LinphoneCall *call, const char *redirect_uri);
710
711 int linphone_core_terminate_all_calls(LinphoneCore *lc);
712
713 int linphone_core_pause_call(LinphoneCore *lc, LinphoneCall *call);
714
715 int linphone_core_pause_all_calls(LinphoneCore *lc);
716
717 int linphone_core_resume_call(LinphoneCore *lc, LinphoneCall *call);
718
719 int linphone_core_update_call(LinphoneCore *lc, LinphoneCall *call, const LinphoneCallParams *params);
720
721 int linphone_core_defer_call_update(LinphoneCore *lc, LinphoneCall *call);
722
723 int linphone_core_accept_call_update(LinphoneCore *lc, LinphoneCall *call, const LinphoneCallParams *params);
724
725 LinphoneCallParams *linphone_core_create_default_call_parameters(LinphoneCore *lc);
726
727 LinphoneCall *linphone_core_get_call_by_remote_address(LinphoneCore *lc, const char *remote_address);
728
729 void linphone_core_send_dtmf(LinphoneCore *lc,char dtmf);
730
731 int linphone_core_set_primary_contact(LinphoneCore *lc, const char *contact);
732
733 const char *linphone_core_get_primary_contact(LinphoneCore *lc);
734
735 const char * linphone_core_get_identity(LinphoneCore *lc);
736
737 void linphone_core_set_guess_hostname(LinphoneCore *lc, bool_t val);
738 bool_t linphone_core_get_guess_hostname(LinphoneCore *lc);
739
740 bool_t linphone_core_ipv6_enabled(LinphoneCore *lc);
741 void linphone_core_enable_ipv6(LinphoneCore *lc, bool_t val);
742
743 LinphoneAddress *linphone_core_get_primary_contact_parsed(LinphoneCore *lc);
744 const char * linphone_core_get_identity(LinphoneCore *lc);
745 /*0= no bandwidth limit*/
746 void linphone_core_set_download_bandwidth(LinphoneCore *lc, int bw);
747 void linphone_core_set_upload_bandwidth(LinphoneCore *lc, int bw);
748
749 int linphone_core_get_download_bandwidth(const LinphoneCore *lc);
750 int linphone_core_get_upload_bandwidth(const LinphoneCore *lc);
751
752 void linphone_core_enable_adaptive_rate_control(LinphoneCore *lc, bool_t enabled);
753 bool_t linphone_core_adaptive_rate_control_enabled(const LinphoneCore *lc);
754 /**
755  * set audio packetization time linphone expect to receive from peer
756  * @ingroup media_parameters
757  *
758  */
759 void linphone_core_set_download_ptime(LinphoneCore *lc, int ptime);
760 /**
761  * get audio packetization time linphone expect to receive from peer, 0 means unspecified
762  * @ingroup media_parameters
763  */
764 int  linphone_core_get_download_ptime(LinphoneCore *lc);
765
766 void linphone_core_set_upload_ptime(LinphoneCore *lc, int ptime);
767
768 int linphone_core_get_upload_ptime(LinphoneCore *lc);
769
770 /* returns a MSList of PayloadType */
771 const MSList *linphone_core_get_audio_codecs(const LinphoneCore *lc);
772
773 int linphone_core_set_audio_codecs(LinphoneCore *lc, MSList *codecs);
774 /* returns a MSList of PayloadType */
775 const MSList *linphone_core_get_video_codecs(const LinphoneCore *lc);
776
777 int linphone_core_set_video_codecs(LinphoneCore *lc, MSList *codecs);
778
779 bool_t linphone_core_payload_type_enabled(LinphoneCore *lc, PayloadType *pt);
780
781 int linphone_core_enable_payload_type(LinphoneCore *lc, PayloadType *pt, bool_t enable);
782
783 PayloadType* linphone_core_find_payload_type(LinphoneCore* lc, const char* type, int rate) ;
784
785 const char *linphone_core_get_payload_type_description(LinphoneCore *lc, PayloadType *pt);
786
787 bool_t linphone_core_check_payload_type_usability(LinphoneCore *lc, PayloadType *pt);
788
789 int linphone_core_add_proxy_config(LinphoneCore *lc, LinphoneProxyConfig *config);
790
791 void linphone_core_clear_proxy_config(LinphoneCore *lc);
792
793 void linphone_core_remove_proxy_config(LinphoneCore *lc, LinphoneProxyConfig *config);
794
795 const MSList *linphone_core_get_proxy_config_list(const LinphoneCore *lc);
796
797 void linphone_core_set_default_proxy(LinphoneCore *lc, LinphoneProxyConfig *config);
798
799 void linphone_core_set_default_proxy_index(LinphoneCore *lc, int index);
800
801 int linphone_core_get_default_proxy(LinphoneCore *lc, LinphoneProxyConfig **config);
802
803 void linphone_core_add_auth_info(LinphoneCore *lc, const LinphoneAuthInfo *info);
804
805 void linphone_core_remove_auth_info(LinphoneCore *lc, const LinphoneAuthInfo *info);
806
807 const MSList *linphone_core_get_auth_info_list(const LinphoneCore *lc);
808
809 const LinphoneAuthInfo *linphone_core_find_auth_info(LinphoneCore *lc, const char *realm, const char *username);
810
811 void linphone_core_abort_authentication(LinphoneCore *lc,  LinphoneAuthInfo *info);
812
813 void linphone_core_clear_all_auth_info(LinphoneCore *lc);
814
815 int linphone_core_get_audio_jittcomp(LinphoneCore *lc);
816
817 void linphone_core_set_audio_jittcomp(LinphoneCore *lc, int value);
818
819 int linphone_core_get_audio_port(const LinphoneCore *lc);
820
821 int linphone_core_get_video_port(const LinphoneCore *lc);
822
823 int linphone_core_get_nortp_timeout(const LinphoneCore *lc);
824
825 void linphone_core_set_audio_port(LinphoneCore *lc, int port);
826
827 void linphone_core_set_video_port(LinphoneCore *lc, int port);
828
829 void linphone_core_set_nortp_timeout(LinphoneCore *lc, int port);
830
831 void linphone_core_set_use_info_for_dtmf(LinphoneCore *lc, bool_t use_info);
832
833 bool_t linphone_core_get_use_info_for_dtmf(LinphoneCore *lc);
834
835 void linphone_core_set_use_rfc2833_for_dtmf(LinphoneCore *lc,bool_t use_rfc2833);
836
837 bool_t linphone_core_get_use_rfc2833_for_dtmf(LinphoneCore *lc);
838
839 void linphone_core_set_sip_port(LinphoneCore *lc, int port);
840
841 int linphone_core_get_sip_port(LinphoneCore *lc);
842
843 int linphone_core_set_sip_transports(LinphoneCore *lc, const LCSipTransports *transports);
844
845 int linphone_core_get_sip_transports(LinphoneCore *lc, LCSipTransports *transports);
846 /**
847  *
848  * Give access to the UDP sip socket. Can be useful to configure this socket as persistent I.E kCFStreamNetworkServiceType set to kCFStreamNetworkServiceTypeVoIP)
849  * @param lc #LinphoneCore
850  * @return socket file descriptor
851  */
852 ortp_socket_t linphone_core_get_sip_socket(LinphoneCore *lc);
853
854 void linphone_core_set_inc_timeout(LinphoneCore *lc, int seconds);
855
856 int linphone_core_get_inc_timeout(LinphoneCore *lc);
857
858 void linphone_core_set_stun_server(LinphoneCore *lc, const char *server);
859
860 const char * linphone_core_get_stun_server(const LinphoneCore *lc);
861
862 void linphone_core_set_nat_address(LinphoneCore *lc, const char *addr);
863
864 const char *linphone_core_get_nat_address(const LinphoneCore *lc);
865
866 void linphone_core_set_firewall_policy(LinphoneCore *lc, LinphoneFirewallPolicy pol);
867
868 LinphoneFirewallPolicy linphone_core_get_firewall_policy(const LinphoneCore *lc);
869
870 const char * linphone_core_get_relay_addr(const LinphoneCore *lc);
871
872 int linphone_core_set_relay_addr(LinphoneCore *lc, const char *addr);
873
874 /* sound functions */
875 /* returns a null terminated static array of string describing the sound devices */
876 const char**  linphone_core_get_sound_devices(LinphoneCore *lc);
877 bool_t linphone_core_sound_device_can_capture(LinphoneCore *lc, const char *device);
878 bool_t linphone_core_sound_device_can_playback(LinphoneCore *lc, const char *device);
879 int linphone_core_get_ring_level(LinphoneCore *lc);
880 int linphone_core_get_play_level(LinphoneCore *lc);
881 int linphone_core_get_rec_level(LinphoneCore *lc);
882 void linphone_core_set_ring_level(LinphoneCore *lc, int level);
883 void linphone_core_set_play_level(LinphoneCore *lc, int level);
884
885 void linphone_core_set_playback_gain_db(LinphoneCore *lc, float level);
886
887 float linphone_core_get_playback_gain_db(LinphoneCore *lc);
888 void linphone_core_set_rec_level(LinphoneCore *lc, int level);
889 const char * linphone_core_get_ringer_device(LinphoneCore *lc);
890 const char * linphone_core_get_playback_device(LinphoneCore *lc);
891 const char * linphone_core_get_capture_device(LinphoneCore *lc);
892 int linphone_core_set_ringer_device(LinphoneCore *lc, const char * devid);
893 int linphone_core_set_playback_device(LinphoneCore *lc, const char * devid);
894 int linphone_core_set_capture_device(LinphoneCore *lc, const char * devid);
895 char linphone_core_get_sound_source(LinphoneCore *lc);
896 void linphone_core_set_sound_source(LinphoneCore *lc, char source);
897 void linphone_core_set_ring(LinphoneCore *lc, const char *path);
898 const char *linphone_core_get_ring(const LinphoneCore *lc);
899 void linphone_core_verify_server_certificates(LinphoneCore *lc, bool_t yesno);
900 void linphone_core_set_root_ca(LinphoneCore *lc, const char *path);
901 void linphone_core_set_ringback(LinphoneCore *lc, const char *path);
902 const char * linphone_core_get_ringback(const LinphoneCore *lc);
903
904 void linphone_core_set_remote_ringback_tone(LinphoneCore *lc,const char *);
905 const char *linphone_core_get_remote_ringback_tone(const LinphoneCore *lc);
906
907 int linphone_core_preview_ring(LinphoneCore *lc, const char *ring,LinphoneCoreCbFunc func,void * userdata);
908 void linphone_core_enable_echo_cancellation(LinphoneCore *lc, bool_t val);
909 bool_t linphone_core_echo_cancellation_enabled(LinphoneCore *lc);
910
911 void linphone_core_enable_echo_limiter(LinphoneCore *lc, bool_t val);
912 bool_t linphone_core_echo_limiter_enabled(const LinphoneCore *lc);
913
914 void linphone_core_enable_agc(LinphoneCore *lc, bool_t val);
915 bool_t linphone_core_agc_enabled(const LinphoneCore *lc);
916
917 void linphone_core_mute_mic(LinphoneCore *lc, bool_t muted);
918 /**
919  * return mic state.
920  *
921  * @ingroup media_parameters
922 **/
923 bool_t linphone_core_is_mic_muted(LinphoneCore *lc);
924
925 bool_t linphone_core_is_audio_muted(LinphoneCore *lc);
926 bool_t linphone_core_is_rtp_muted(LinphoneCore *lc);
927
928 bool_t linphone_core_get_rtp_no_xmit_on_audio_mute(const LinphoneCore *lc);
929 void linphone_core_set_rtp_no_xmit_on_audio_mute(LinphoneCore *lc, bool_t val);
930
931
932 /* returns a list of LinphoneCallLog */
933 const MSList * linphone_core_get_call_logs(LinphoneCore *lc);
934 void linphone_core_clear_call_logs(LinphoneCore *lc);
935
936 /* video support */
937 bool_t linphone_core_video_supported(LinphoneCore *lc);
938 void linphone_core_enable_video(LinphoneCore *lc, bool_t vcap_enabled, bool_t display_enabled);
939 bool_t linphone_core_video_enabled(LinphoneCore *lc);
940 void linphone_core_set_video_policy(LinphoneCore *lc, const LinphoneVideoPolicy *policy);
941 const LinphoneVideoPolicy *linphone_core_get_video_policy(LinphoneCore *lc);
942
943 typedef struct MSVideoSizeDef{
944         MSVideoSize vsize;
945         const char *name;
946 }MSVideoSizeDef;
947 /* returns a zero terminated table of MSVideoSizeDef*/
948 const MSVideoSizeDef *linphone_core_get_supported_video_sizes(LinphoneCore *lc);
949 void linphone_core_set_preferred_video_size(LinphoneCore *lc, MSVideoSize vsize);
950 MSVideoSize linphone_core_get_preferred_video_size(LinphoneCore *lc);
951 void linphone_core_set_preferred_video_size_by_name(LinphoneCore *lc, const char *name);
952
953 void linphone_core_enable_video_preview(LinphoneCore *lc, bool_t val);
954 bool_t linphone_core_video_preview_enabled(const LinphoneCore *lc);
955
956 void linphone_core_enable_self_view(LinphoneCore *lc, bool_t val);
957 bool_t linphone_core_self_view_enabled(const LinphoneCore *lc);
958
959
960 /* returns a null terminated static array of string describing the webcams */
961 const char**  linphone_core_get_video_devices(const LinphoneCore *lc);
962 int linphone_core_set_video_device(LinphoneCore *lc, const char *id);
963 const char *linphone_core_get_video_device(const LinphoneCore *lc);
964
965 /* Set static picture to be used when "Static picture" is the video device */
966 int linphone_core_set_static_picture(LinphoneCore *lc, const char *path);
967
968 /* Set and get frame rate for static picture */
969 int linphone_core_set_static_picture_fps(LinphoneCore *lc, float fps);
970 float linphone_core_get_static_picture_fps(LinphoneCore *lc);
971
972 /*function to be used for eventually setting window decorations (icons, title...)*/
973 unsigned long linphone_core_get_native_video_window_id(const LinphoneCore *lc);
974 void linphone_core_set_native_video_window_id(LinphoneCore *lc, unsigned long id);
975
976 unsigned long linphone_core_get_native_preview_window_id(const LinphoneCore *lc);
977 void linphone_core_set_native_preview_window_id(LinphoneCore *lc, unsigned long id);
978
979 void linphone_core_use_preview_window(LinphoneCore *lc, bool_t yesno);
980 int linphone_core_get_device_rotation(LinphoneCore *lc );
981 void linphone_core_set_device_rotation(LinphoneCore *lc, int rotation);
982
983 /* start or stop streaming video in case of embedded window */
984 void linphone_core_show_video(LinphoneCore *lc, bool_t show);
985
986 /*play/record support: use files instead of soundcard*/
987 void linphone_core_use_files(LinphoneCore *lc, bool_t yesno);
988 void linphone_core_set_play_file(LinphoneCore *lc, const char *file);
989 void linphone_core_set_record_file(LinphoneCore *lc, const char *file);
990
991 void linphone_core_play_dtmf(LinphoneCore *lc, char dtmf, int duration_ms);
992 void linphone_core_stop_dtmf(LinphoneCore *lc);
993
994 int linphone_core_get_current_call_duration(const LinphoneCore *lc);
995
996
997 int linphone_core_get_mtu(const LinphoneCore *lc);
998 void linphone_core_set_mtu(LinphoneCore *lc, int mtu);
999
1000 /**
1001  * @ingroup network_parameters
1002  * This method is called by the application to notify the linphone core library when network is reachable.
1003  * Calling this method with true trigger linphone to initiate a registration process for all proxy
1004  * configuration with parameter register set to enable.
1005  * This method disable the automatic registration mode. It means you must call this method after each network state changes
1006  *
1007  */
1008 void linphone_core_set_network_reachable(LinphoneCore* lc,bool_t value);
1009 /**
1010  * @ingroup network_parameters
1011  * return network state either as positioned by the application or by linphone
1012  */
1013 bool_t linphone_core_is_network_reachabled(LinphoneCore* lc);
1014
1015 /**
1016  *  @ingroup network_parameters
1017  *  enable signaling keep alive. small udp packet sent periodically to keep udp NAT association
1018  */
1019 void linphone_core_enable_keep_alive(LinphoneCore* lc,bool_t enable);
1020 /**
1021  *  @ingroup network_parameters
1022  * Is signaling keep alive
1023  */
1024 bool_t linphone_core_keep_alive_enabled(LinphoneCore* lc);
1025
1026 void *linphone_core_get_user_data(LinphoneCore *lc);
1027
1028 /* returns LpConfig object to read/write to the config file: usefull if you wish to extend
1029 the config file with your own sections */
1030 struct _LpConfig *linphone_core_get_config(LinphoneCore *lc);
1031
1032 /*set a callback for some blocking operations, it takes you informed of the progress of the operation*/
1033 void linphone_core_set_waiting_callback(LinphoneCore *lc, LinphoneWaitingCallback cb, void *user_context);
1034
1035 /*returns the list of registered SipSetup (linphonecore plugins) */
1036 const MSList * linphone_core_get_sip_setups(LinphoneCore *lc);
1037
1038 void linphone_core_destroy(LinphoneCore *lc);
1039
1040 /*for advanced users:*/
1041 typedef RtpTransport * (*LinphoneRtpTransportFactoryFunc)(void *data, int port);
1042 struct _LinphoneRtpTransportFactories{
1043         LinphoneRtpTransportFactoryFunc audio_rtp_func;
1044         void *audio_rtp_func_data;
1045         LinphoneRtpTransportFactoryFunc audio_rtcp_func;
1046         void *audio_rtcp_func_data;
1047         LinphoneRtpTransportFactoryFunc video_rtp_func;
1048         void *video_rtp_func_data;
1049         LinphoneRtpTransportFactoryFunc video_rtcp_func;
1050         void *video_rtcp_func_data;
1051 };
1052 typedef struct _LinphoneRtpTransportFactories LinphoneRtpTransportFactories;
1053
1054 void linphone_core_set_rtp_transport_factories(LinphoneCore* lc, LinphoneRtpTransportFactories *factories);
1055
1056 int linphone_core_get_current_call_stats(LinphoneCore *lc, rtp_stats_t *local, rtp_stats_t *remote);
1057
1058 const MSList *linphone_core_get_calls(LinphoneCore *lc);
1059
1060 LinphoneGlobalState linphone_core_get_global_state(const LinphoneCore *lc);
1061 /**
1062  * force registration refresh to be initiated upon next iterate
1063  * @ingroup proxies
1064  */
1065 void linphone_core_refresh_registers(LinphoneCore* lc);
1066
1067 /* Path to the file storing secrets cache */
1068 void linphone_core_set_zrtp_secrets_file(LinphoneCore *lc, const char* file);
1069
1070
1071 const LinphoneCall* linphone_core_find_call_from_uri(LinphoneCore *lc, const char *uri);
1072
1073 int linphone_core_add_to_conference(LinphoneCore *lc, LinphoneCall *call);
1074 int linphone_core_add_all_to_conference(LinphoneCore *lc);
1075 int linphone_core_remove_from_conference(LinphoneCore *lc, LinphoneCall *call);
1076 bool_t linphone_core_is_in_conference(const LinphoneCore *lc);
1077 int linphone_core_enter_conference(LinphoneCore *lc);
1078 int linphone_core_leave_conference(LinphoneCore *lc);
1079 float linphone_core_get_conference_local_input_volume(LinphoneCore *lc);
1080
1081 int linphone_core_terminate_conference(LinphoneCore *lc);
1082 int linphone_core_get_conference_size(LinphoneCore *lc);
1083
1084 int linphone_core_get_max_calls(LinphoneCore *lc);
1085 void linphone_core_set_max_calls(LinphoneCore *lc, int max);
1086
1087 bool_t linphone_core_sound_resources_locked(LinphoneCore *lc);
1088
1089 bool_t linphone_core_media_encryption_supported(const LinphoneCore *lc, LinphoneMediaEncryption menc);
1090
1091 /**
1092  * Choose media encryption policy to be used for RTP packets
1093  */
1094 int linphone_core_set_media_encryption(LinphoneCore *lc, enum LinphoneMediaEncryption menc);
1095 LinphoneMediaEncryption linphone_core_get_media_encryption(LinphoneCore *lc);
1096
1097 bool_t linphone_core_is_media_encryption_mandatory(LinphoneCore *lc);
1098 /**
1099  * Defines Linphone behaviour when encryption parameters negociation fails on outoing call.
1100  * If set to TRUE call will fail; if set to FALSE will resend an INVITE with encryption disabled
1101  */
1102 void linphone_core_set_media_encryption_mandatory(LinphoneCore *lc, bool_t m);
1103
1104 /**
1105  * Init call params using LinphoneCore's current configuration
1106  */
1107 void linphone_core_init_default_params(LinphoneCore*lc, LinphoneCallParams *params);
1108
1109 /**
1110  * True if tunnel support was compiled.
1111  */
1112 bool_t linphone_core_tunnel_available(void);
1113
1114 typedef struct LinphoneTunnel LinphoneTunnel;
1115 /**
1116 * get tunnel instance if available
1117 */
1118 LinphoneTunnel *linphone_core_get_tunnel(LinphoneCore *lc);
1119
1120 #ifdef __cplusplus
1121 }
1122 #endif
1123
1124
1125 #endif