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