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