]> sjero.net Git - linphone/blob - coreapi/linphonecore.h
javadoc enhancements
[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 _LinphoneCore;
41 /**
42  * Linphone core main object created by function linphone_core_new() .
43  * @ingroup initializing
44  */
45 typedef struct _LinphoneCore LinphoneCore;
46
47 struct _LpConfig;
48
49
50 /**
51  * Linphone core SIP transport ports.
52  * Use with #linphone_core_set_sip_transports
53  * @ingroup initializing
54  */
55 typedef struct _LCSipTransports{
56         /**
57          * udp port to listening on, negative value if not set
58          * */
59         int udp_port;
60         /**
61          * tcp port to listening on, negative value if not set
62          * */
63         int tcp_port;
64         /**
65          * dtls port to listening on, negative value if not set
66          * */
67         int dtls_port;
68         /**
69          * tls port to listening on, negative value if not set
70          * */
71         int tls_port;
72 } LCSipTransports;
73
74 typedef struct _LCSipTransports LCSipTransports;
75
76 /**
77  * Object that represents a SIP address.
78  *
79  * The LinphoneAddress is an opaque object to represents SIP addresses, ie
80  * the content of SIP's 'from' and 'to' headers.
81  * A SIP address is made of display name, username, domain name, port, and various
82  * uri headers (such as tags). It looks like 'Alice <sip:alice@example.net>'.
83  * The LinphoneAddress has methods to extract and manipulate all parts of the address.
84  * When some part of the address (for example the username) is empty, the accessor methods
85  * return NULL.
86  *
87  * @ingroup linphone_address
88  * @var LinphoneAddress
89  */
90 typedef struct SalAddress LinphoneAddress;
91 #ifdef IN_LINPHONE
92 #include "linphonefriend.h"
93 #else
94 #include "linphone/linphonefriend.h"
95 #endif
96
97 LinphoneAddress * linphone_address_new(const char *uri);
98 LinphoneAddress * linphone_address_clone(const LinphoneAddress *uri);
99 const char *linphone_address_get_scheme(const LinphoneAddress *u);
100 const char *linphone_address_get_display_name(const LinphoneAddress* u);
101 const char *linphone_address_get_username(const LinphoneAddress *u);
102 const char *linphone_address_get_domain(const LinphoneAddress *u);
103 /**
104  * Get port number as an integer value.
105  *
106  */
107 int linphone_address_get_port_int(const LinphoneAddress *u);
108 /**
109  * Get port number, null if not present.
110  */
111 const char* linphone_address_get_port(const LinphoneAddress *u);
112 void linphone_address_set_display_name(LinphoneAddress *u, const char *display_name);
113 void linphone_address_set_username(LinphoneAddress *uri, const char *username);
114 void linphone_address_set_domain(LinphoneAddress *uri, const char *host);
115 void linphone_address_set_port(LinphoneAddress *uri, const char *port);
116 void linphone_address_set_port_int(LinphoneAddress *uri, int port);
117 /*remove tags, params etc... so that it is displayable to the user*/
118 void linphone_address_clean(LinphoneAddress *uri);
119 char *linphone_address_as_string(const LinphoneAddress *u);
120 char *linphone_address_as_string_uri_only(const LinphoneAddress *u);
121 bool_t linphone_address_weak_equal(const LinphoneAddress *a1, const LinphoneAddress *a2);
122 void linphone_address_destroy(LinphoneAddress *u);
123
124 struct _SipSetupContext;
125
126
127 /**
128  * Enum representing the direction of a call.
129  * @ingroup call_logs
130 **/
131 enum _LinphoneCallDir {
132         LinphoneCallOutgoing, /**< outgoing calls*/
133         LinphoneCallIncoming  /**< incoming calls*/
134 };
135
136 /**
137  * Typedef for enum
138  * @ingroup call_logs
139 **/
140 typedef enum _LinphoneCallDir LinphoneCallDir;
141
142 /**
143  * Enum representing the status of a call
144  * @ingroup call_logs
145 **/
146 typedef enum _LinphoneCallStatus {
147         LinphoneCallSuccess, /**< The call was sucessful*/
148         LinphoneCallAborted, /**< The call was aborted */
149         LinphoneCallMissed, /**< The call was missed (unanswered)*/
150         LinphoneCallDeclined /**< The call was declined, either locally or by remote end*/
151 } LinphoneCallStatus;
152
153 /**
154  * Structure representing a call log.
155  *
156  * @ingroup call_logs
157  *
158 **/
159 typedef struct _LinphoneCallLog LinphoneCallLog;
160
161 /**
162  * Enum describing type of media encryption types.
163 **/
164 enum LinphoneMediaEncryption {
165         LinphoneMediaEncryptionNone,
166         LinphoneMediaEncryptionSRTP,
167         LinphoneMediaEncryptionZRTP
168 };
169
170 /**
171  * Enum describing type of media encryption types.
172 **/
173 typedef enum LinphoneMediaEncryption LinphoneMediaEncryption;
174
175 /*public: */
176 LinphoneAddress *linphone_call_log_get_from(LinphoneCallLog *cl);
177 LinphoneAddress *linphone_call_log_get_to(LinphoneCallLog *cl);
178 LinphoneAddress *linphone_call_log_get_remote_address(LinphoneCallLog *cl);
179 LinphoneCallDir linphone_call_log_get_dir(LinphoneCallLog *cl);
180 LinphoneCallStatus linphone_call_log_get_status(LinphoneCallLog *cl);
181 LinphoneCallStatus linphone_call_log_video_enabled(LinphoneCallLog *cl);
182 time_t linphone_call_log_get_start_date(LinphoneCallLog *cl);
183 int linphone_call_log_get_duration(LinphoneCallLog *cl);
184 float linphone_call_log_get_quality(LinphoneCallLog *cl);
185 void linphone_call_log_set_user_pointer(LinphoneCallLog *cl, void *up);
186 void *linphone_call_log_get_user_pointer(const LinphoneCallLog *cl);
187 void linphone_call_log_set_ref_key(LinphoneCallLog *cl, const char *refkey);
188 const char *linphone_call_log_get_ref_key(const LinphoneCallLog *cl);
189 const rtp_stats_t *linphone_call_log_get_local_stats(const LinphoneCallLog *cl);
190 const rtp_stats_t *linphone_call_log_get_remote_stats(const LinphoneCallLog *cl);
191 const char *linphone_call_log_get_call_id(const LinphoneCallLog *cl);
192 char * linphone_call_log_to_str(LinphoneCallLog *cl);
193
194 struct _LinphoneCallParams;
195
196 /**
197  * The LinphoneCallParams is an object containing various call related parameters.
198  * It can be used to retrieve parameters from a currently running call or modify the call's characteristics
199  * dynamically.
200 **/
201 typedef struct _LinphoneCallParams LinphoneCallParams;
202
203 const PayloadType* linphone_call_params_get_used_audio_codec(const LinphoneCallParams *cp);
204 const PayloadType* linphone_call_params_get_used_video_codec(const LinphoneCallParams *cp);
205 LinphoneCallParams * linphone_call_params_copy(const LinphoneCallParams *cp);
206 void linphone_call_params_enable_video(LinphoneCallParams *cp, bool_t enabled);
207 bool_t linphone_call_params_video_enabled(const LinphoneCallParams *cp);
208 LinphoneMediaEncryption linphone_call_params_get_media_encryption(const LinphoneCallParams *cp);
209 void linphone_call_params_set_media_encryption(LinphoneCallParams *cp, LinphoneMediaEncryption e);
210 void linphone_call_params_enable_early_media_sending(LinphoneCallParams *cp, bool_t enabled);
211 bool_t linphone_call_params_early_media_sending_enabled(const LinphoneCallParams *cp);
212 bool_t linphone_call_params_local_conference_mode(const LinphoneCallParams *cp);
213 void linphone_call_params_set_audio_bandwidth_limit(LinphoneCallParams *cp, int bw);
214 void linphone_call_params_destroy(LinphoneCallParams *cp);
215 bool_t linphone_call_params_low_bandwidth_enabled(const LinphoneCallParams *cp);
216 void linphone_call_params_enable_low_bandwidth(LinphoneCallParams *cp, bool_t enabled);
217 void linphone_call_params_set_record_file(LinphoneCallParams *cp, const char *path);
218 const char *linphone_call_params_get_record_file(const LinphoneCallParams *cp);
219 void linphone_call_params_add_custom_header(LinphoneCallParams *params, const char *header_name, const char *header_value);
220 const char *linphone_call_params_get_custom_header(const LinphoneCallParams *params, const char *header_name);
221 /**
222  * Enum describing failure reasons.
223  * @ingroup initializing
224 **/
225 enum _LinphoneReason{
226         LinphoneReasonNone,
227         LinphoneReasonNoResponse, /**<No response received from remote*/
228         LinphoneReasonBadCredentials, /**<Authentication failed due to bad or missing credentials*/
229         LinphoneReasonDeclined, /**<The call has been declined*/
230         LinphoneReasonNotFound, /**<Destination of the calls was not found.*/
231         LinphoneReasonNotAnswered, /**<The call was not answered in time*/
232         LinphoneReasonBusy /**<Phone line was busy */
233 };
234
235 /**
236  * Enum describing failure reasons.
237  * @ingroup initializing
238 **/
239 typedef enum _LinphoneReason LinphoneReason;
240
241 const char *linphone_reason_to_string(LinphoneReason err);
242
243 /**
244  * Structure describing policy regarding video streams establishments.
245  * @ingroup media_parameters
246 **/
247 struct _LinphoneVideoPolicy{
248         bool_t automatically_initiate; /**<Whether video shall be automatically proposed for outgoing calls.*/ 
249         bool_t automatically_accept; /**<Whether video shall be automatically accepted for incoming calls*/
250         bool_t unused[2];
251 };
252
253 /**
254  * Structure describing policy regarding video streams establishments.
255  * @ingroup media_parameters
256 **/
257 typedef struct _LinphoneVideoPolicy LinphoneVideoPolicy;
258
259 /**
260  * The LinphoneCall object represents a call issued or received by the LinphoneCore
261  * @ingroup call_control
262 **/
263 struct _LinphoneCall;
264 /**
265  * The LinphoneCall object represents a call issued or received by the LinphoneCore
266  * @ingroup call_control
267 **/
268 typedef struct _LinphoneCall LinphoneCall;
269
270
271 /**
272  * @addtogroup call_misc
273  * @{
274 **/
275
276 #define LINPHONE_CALL_STATS_AUDIO 0
277 #define LINPHONE_CALL_STATS_VIDEO 1
278
279 /**
280  * Enum describing ICE states.
281  * @ingroup initializing
282 **/
283 enum _LinphoneIceState{
284         LinphoneIceStateNotActivated, /**< ICE has not been activated for this call */
285         LinphoneIceStateFailed, /**< ICE processing has failed */
286         LinphoneIceStateInProgress, /**< ICE process is in progress */
287         LinphoneIceStateHostConnection, /**< ICE has established a direct connection to the remote host */
288         LinphoneIceStateReflexiveConnection, /**< ICE has established a connection to the remote host through one or several NATs */
289         LinphoneIceStateRelayConnection /**< ICE has established a connection through a relay */
290 };
291
292 /**
293  * Enum describing Ice states.
294  * @ingroup initializing
295 **/
296 typedef enum _LinphoneIceState LinphoneIceState;
297
298 /**
299  * Enum describing uPnP states.
300  * @ingroup initializing
301 **/
302 enum _LinphoneUpnpState{
303         LinphoneUpnpStateIdle, /**< uPnP is not activate */
304         LinphoneUpnpStatePending, /**< uPnP process is in progress */
305         LinphoneUpnpStateAdding,   /**< Internal use: Only used by port binding */
306         LinphoneUpnpStateRemoving, /**< Internal use: Only used by port binding */
307         LinphoneUpnpStateNotAvailable,  /**< uPnP is not available */
308         LinphoneUpnpStateOk, /**< uPnP is enabled */
309         LinphoneUpnpStateKo, /**< uPnP processing has failed */
310 };
311
312 /**
313  * Enum describing uPnP states.
314  * @ingroup initializing
315 **/
316 typedef enum _LinphoneUpnpState LinphoneUpnpState;
317
318
319 /**
320  * The LinphoneCallStats objects carries various statistic informations regarding quality of audio or video streams.
321  *
322  * To receive these informations periodically and as soon as they are computed, the application is invited to place a #CallStatsUpdated callback in the LinphoneCoreVTable structure
323  * it passes for instanciating the LinphoneCore object (see linphone_core_new() ).
324  *
325  * At any time, the application can access last computed statistics using linphone_call_get_audio_stats() or linphone_call_get_video_stats().
326 **/
327 typedef struct _LinphoneCallStats LinphoneCallStats;
328
329 /**
330  * The LinphoneCallStats objects carries various statistic informations regarding quality of audio or video streams.
331  *
332  * To receive these informations periodically and as soon as they are computed, the application is invited to place a #CallStatsUpdated callback in the LinphoneCoreVTable structure
333  * it passes for instanciating the LinphoneCore object (see linphone_core_new() ).
334  *
335  * At any time, the application can access last computed statistics using linphone_call_get_audio_stats() or linphone_call_get_video_stats().
336 **/
337 struct _LinphoneCallStats {
338         int             type; /**< Can be either LINPHONE_CALL_STATS_AUDIO or LINPHONE_CALL_STATS_VIDEO*/
339         jitter_stats_t  jitter_stats; /**<jitter buffer statistics, see oRTP documentation for details */
340         mblk_t*         received_rtcp; /**<Last RTCP packet received, as a mblk_t structure. See oRTP documentation for details how to extract information from it*/
341         mblk_t*         sent_rtcp;/**<Last RTCP packet sent, as a mblk_t structure. See oRTP documentation for details how to extract information from it*/
342         float           round_trip_delay; /**<Round trip propagation time in seconds if known, -1 if unknown.*/
343         LinphoneIceState        ice_state; /**< State of ICE processing. */
344         LinphoneUpnpState       upnp_state; /**< State of uPnP processing. */
345         float download_bandwidth; /**<Download bandwidth measurement of received stream, expressed in kbit/s, including IP/UDP/RTP headers*/
346         float upload_bandwidth; /**<Download bandwidth measurement of sent stream, expressed in kbit/s, including IP/UDP/RTP headers*/
347 };
348
349 /**
350  * @}
351 **/
352
353 const LinphoneCallStats *linphone_call_get_audio_stats(const LinphoneCall *call);
354 const LinphoneCallStats *linphone_call_get_video_stats(const LinphoneCall *call);
355
356
357 /** Callback prototype */
358 typedef void (*LinphoneCallCbFunc)(struct _LinphoneCall *call,void * user_data);
359
360 /**
361  * LinphoneCallState enum represents the different state a call can reach into.
362  * The application is notified of state changes through the LinphoneCoreVTable::call_state_changed callback.
363  * @ingroup call_control
364 **/
365 typedef enum _LinphoneCallState{
366         LinphoneCallIdle,                                       /**<Initial call state */
367         LinphoneCallIncomingReceived, /**<This is a new incoming call */
368         LinphoneCallOutgoingInit, /**<An outgoing call is started */
369         LinphoneCallOutgoingProgress, /**<An outgoing call is in progress */
370         LinphoneCallOutgoingRinging, /**<An outgoing call is ringing at remote end */
371         LinphoneCallOutgoingEarlyMedia, /**<An outgoing call is proposed early media */
372         LinphoneCallConnected, /**<Connected, the call is answered */
373         LinphoneCallStreamsRunning, /**<The media streams are established and running*/
374         LinphoneCallPausing, /**<The call is pausing at the initiative of local end */
375         LinphoneCallPaused, /**< The call is paused, remote end has accepted the pause */
376         LinphoneCallResuming, /**<The call is being resumed by local end*/
377         LinphoneCallRefered, /**<The call is being transfered to another party, resulting in a new outgoing call to follow immediately*/
378         LinphoneCallError, /**<The call encountered an error*/
379         LinphoneCallEnd, /**<The call ended normally*/
380         LinphoneCallPausedByRemote, /**<The call is paused by remote end*/
381         LinphoneCallUpdatedByRemote, /**<The call's parameters change is requested by remote end, used for example when video is added by remote */
382         LinphoneCallIncomingEarlyMedia, /**<We are proposing early media to an incoming call */
383         LinphoneCallUpdating, /**<A call update has been initiated by us */
384         LinphoneCallReleased /**< The call object is no more retained by the core */
385 } LinphoneCallState;
386
387 const char *linphone_call_state_to_string(LinphoneCallState cs);
388
389 LinphoneCore *linphone_call_get_core(const LinphoneCall *call);
390 LinphoneCallState linphone_call_get_state(const LinphoneCall *call);
391 bool_t linphone_call_asked_to_autoanswer(LinphoneCall *call);
392 const LinphoneAddress * linphone_core_get_current_call_remote_address(struct _LinphoneCore *lc);
393 const LinphoneAddress * linphone_call_get_remote_address(const LinphoneCall *call);
394 char *linphone_call_get_remote_address_as_string(const LinphoneCall *call);
395 LinphoneCallDir linphone_call_get_dir(const LinphoneCall *call);
396 LinphoneCall * linphone_call_ref(LinphoneCall *call);
397 void linphone_call_unref(LinphoneCall *call);
398 LinphoneCallLog *linphone_call_get_call_log(const LinphoneCall *call);
399 const char *linphone_call_get_refer_to(const LinphoneCall *call);
400 bool_t linphone_call_has_transfer_pending(const LinphoneCall *call);
401 LinphoneCall *linphone_call_get_replaced_call(LinphoneCall *call);
402 int linphone_call_get_duration(const LinphoneCall *call);
403 const LinphoneCallParams * linphone_call_get_current_params(LinphoneCall *call);
404 const LinphoneCallParams * linphone_call_get_remote_params(LinphoneCall *call);
405 void linphone_call_enable_camera(LinphoneCall *lc, bool_t enabled);
406 bool_t linphone_call_camera_enabled(const LinphoneCall *lc);
407 int linphone_call_take_video_snapshot(LinphoneCall *call, const char *file);
408 LinphoneReason linphone_call_get_reason(const LinphoneCall *call);
409 const char *linphone_call_get_remote_user_agent(LinphoneCall *call);
410 const char *linphone_call_get_remote_contact(LinphoneCall *call);
411 float linphone_call_get_play_volume(LinphoneCall *call);
412 float linphone_call_get_record_volume(LinphoneCall *call);
413 float linphone_call_get_current_quality(LinphoneCall *call);
414 float linphone_call_get_average_quality(LinphoneCall *call);
415 const char* linphone_call_get_authentication_token(LinphoneCall *call);
416 bool_t linphone_call_get_authentication_token_verified(LinphoneCall *call);
417 void linphone_call_set_authentication_token_verified(LinphoneCall *call, bool_t verified);
418 void linphone_call_send_vfu_request(LinphoneCall *call);
419 void *linphone_call_get_user_pointer(LinphoneCall *call);
420 void linphone_call_set_user_pointer(LinphoneCall *call, void *user_pointer);
421 void linphone_call_set_next_video_frame_decoded_callback(LinphoneCall *call, LinphoneCallCbFunc cb, void* user_data);
422 LinphoneCallState linphone_call_get_transfer_state(LinphoneCall *call);
423 void linphone_call_zoom_video(LinphoneCall* call, float zoom_factor, float* cx, float* cy);
424 void linphone_call_start_recording(LinphoneCall *call);
425 void linphone_call_stop_recording(LinphoneCall *call);
426 /**
427  * Return TRUE if this call is currently part of a conference
428  *@param call #LinphoneCall
429  *@return TRUE if part of a conference.
430  *
431  @ingroup call_control
432  */
433 bool_t linphone_call_is_in_conference(const LinphoneCall *call);
434 /**
435  * Enables or disable echo cancellation for this call
436  * @param call
437  * @param val
438  *
439  * @ingroup media_parameters
440 **/
441 void linphone_call_enable_echo_cancellation(LinphoneCall *call, bool_t val) ;
442 /**
443  * Returns TRUE if echo cancellation is enabled.
444  *
445  * @ingroup media_parameters
446 **/
447 bool_t linphone_call_echo_cancellation_enabled(LinphoneCall *lc);
448 /**
449  * Enables or disable echo limiter for this call
450  * @param call
451  * @param val
452  *
453  * @ingroup media_parameters
454 **/
455 void linphone_call_enable_echo_limiter(LinphoneCall *call, bool_t val);
456 /**
457  * Returns TRUE if echo limiter is enabled.
458  *
459  * @ingroup media_parameters
460 **/
461 bool_t linphone_call_echo_limiter_enabled(const LinphoneCall *call);
462
463 /*keep this in sync with mediastreamer2/msvolume.h*/
464
465 /**
466  * Lowest volume measurement that can be returned by linphone_call_get_play_volume() or linphone_call_get_record_volume(), corresponding to pure silence.
467  * @ingroup call_misc
468 **/
469 #define LINPHONE_VOLUME_DB_LOWEST (-120)
470
471 /**
472  * @addtogroup proxies
473  * @{
474 **/
475 /**
476  * The LinphoneProxyConfig object represents a proxy configuration to be used
477  * by the LinphoneCore object.
478  * Its fields must not be used directly in favour of the accessors methods.
479  * Once created and filled properly the LinphoneProxyConfig can be given to
480  * LinphoneCore with linphone_core_add_proxy_config().
481  * This will automatically triggers the registration, if enabled.
482  *
483  * The proxy configuration are persistent to restarts because they are saved
484  * in the configuration file. As a consequence, after linphone_core_new() there
485  * might already be a list of configured proxy that can be examined with
486  * linphone_core_get_proxy_config_list().
487  *
488  * The default proxy (see linphone_core_set_default_proxy() ) is the one of the list
489  * that is used by default for calls.
490 **/
491 typedef struct _LinphoneProxyConfig LinphoneProxyConfig;
492
493 /**
494  * LinphoneRegistrationState describes proxy registration states.
495 **/
496 typedef enum _LinphoneRegistrationState{
497         LinphoneRegistrationNone, /**<Initial state for registrations */
498         LinphoneRegistrationProgress, /**<Registration is in progress */
499         LinphoneRegistrationOk, /**< Registration is successful */
500         LinphoneRegistrationCleared, /**< Unregistration succeeded */
501         LinphoneRegistrationFailed      /**<Registration failed */
502 }LinphoneRegistrationState;
503
504 /**
505  * Human readable version of the #LinphoneRegistrationState
506  * @param cs sate
507  */
508 const char *linphone_registration_state_to_string(LinphoneRegistrationState cs);
509
510 LinphoneProxyConfig *linphone_proxy_config_new(void);
511 int linphone_proxy_config_set_server_addr(LinphoneProxyConfig *obj, const char *server_addr);
512 int linphone_proxy_config_set_identity(LinphoneProxyConfig *obj, const char *identity);
513 int linphone_proxy_config_set_route(LinphoneProxyConfig *obj, const char *route);
514 void linphone_proxy_config_expires(LinphoneProxyConfig *obj, int expires);
515 /**
516  * Indicates  either or not, REGISTRATION must be issued for this #LinphoneProxyConfig .
517  * <br> In case this #LinphoneProxyConfig has been added to #LinphoneCore, follows the linphone_proxy_config_edit() rule.
518  * @param obj object pointer
519  * @param val if true, registration will be engaged
520  */
521 void linphone_proxy_config_enable_register(LinphoneProxyConfig *obj, bool_t val);
522 #define linphone_proxy_config_enableregister linphone_proxy_config_enable_register
523 void linphone_proxy_config_edit(LinphoneProxyConfig *obj);
524 int linphone_proxy_config_done(LinphoneProxyConfig *obj);
525 /**
526  * Indicates  either or not, PUBLISH must be issued for this #LinphoneProxyConfig .
527  * <br> In case this #LinphoneProxyConfig has been added to #LinphoneCore, follows the linphone_proxy_config_edit() rule.
528  * @param obj object pointer
529  * @param val if true, publish will be engaged
530  *
531  */
532 void linphone_proxy_config_enable_publish(LinphoneProxyConfig *obj, bool_t val);
533 void linphone_proxy_config_set_dial_escape_plus(LinphoneProxyConfig *cfg, bool_t val);
534 void linphone_proxy_config_set_dial_prefix(LinphoneProxyConfig *cfg, const char *prefix);
535
536 LinphoneRegistrationState linphone_proxy_config_get_state(const LinphoneProxyConfig *obj);
537 bool_t linphone_proxy_config_is_registered(const LinphoneProxyConfig *obj);
538 const char *linphone_proxy_config_get_domain(const LinphoneProxyConfig *cfg);
539
540 const char *linphone_proxy_config_get_route(const LinphoneProxyConfig *obj);
541 const char *linphone_proxy_config_get_identity(const LinphoneProxyConfig *obj);
542 bool_t linphone_proxy_config_publish_enabled(const LinphoneProxyConfig *obj);
543 const char *linphone_proxy_config_get_addr(const LinphoneProxyConfig *obj);
544 int linphone_proxy_config_get_expires(const LinphoneProxyConfig *obj);
545 bool_t linphone_proxy_config_register_enabled(const LinphoneProxyConfig *obj);
546 void linphone_proxy_config_refresh_register(LinphoneProxyConfig *obj);
547 const char *linphone_proxy_config_get_contact_parameters(const LinphoneProxyConfig *obj);
548 void linphone_proxy_config_set_contact_parameters(LinphoneProxyConfig *obj, const char *contact_params);
549 struct _LinphoneCore * linphone_proxy_config_get_core(const LinphoneProxyConfig *obj);
550
551 bool_t linphone_proxy_config_get_dial_escape_plus(const LinphoneProxyConfig *cfg);
552 const char * linphone_proxy_config_get_dial_prefix(const LinphoneProxyConfig *cfg);
553
554 LinphoneReason linphone_proxy_config_get_error(const LinphoneProxyConfig *cfg);
555
556 /* destruction is called automatically when removing the proxy config */
557 void linphone_proxy_config_destroy(LinphoneProxyConfig *cfg);
558 void linphone_proxy_config_set_sip_setup(LinphoneProxyConfig *cfg, const char *type);
559 SipSetupContext *linphone_proxy_config_get_sip_setup_context(LinphoneProxyConfig *cfg);
560 SipSetup *linphone_proxy_config_get_sip_setup(LinphoneProxyConfig *cfg);
561 /**
562  * normalize a human readable phone number into a basic string. 888-444-222 becomes 888444222
563  */
564 int linphone_proxy_config_normalize_number(LinphoneProxyConfig *proxy, const char *username, char *result, size_t result_len);
565 /*
566  *  attached a user data to a proxy config
567  */
568 void linphone_proxy_config_set_user_data(LinphoneProxyConfig *cr, void * ud);
569 /*
570  *  get user data to a proxy config. return null if any
571  */
572 void * linphone_proxy_config_get_user_data(LinphoneProxyConfig *cr);
573
574 /**
575  * @}
576 **/
577
578 typedef struct _LinphoneAccountCreator{
579         struct _LinphoneCore *lc;
580         struct _SipSetupContext *ssctx;
581         char *username;
582         char *password;
583         char *domain;
584         char *route;
585         char *email;
586         int suscribe;
587         bool_t succeeded;
588 }LinphoneAccountCreator;
589
590 LinphoneAccountCreator *linphone_account_creator_new(struct _LinphoneCore *core, const char *type);
591 void linphone_account_creator_set_username(LinphoneAccountCreator *obj, const char *username);
592 void linphone_account_creator_set_password(LinphoneAccountCreator *obj, const char *password);
593 void linphone_account_creator_set_domain(LinphoneAccountCreator *obj, const char *domain);
594 void linphone_account_creator_set_route(LinphoneAccountCreator *obj, const char *route);
595 void linphone_account_creator_set_email(LinphoneAccountCreator *obj, const char *email);
596 void linphone_account_creator_set_suscribe(LinphoneAccountCreator *obj, int suscribre);
597 const char * linphone_account_creator_get_username(LinphoneAccountCreator *obj);
598 const char * linphone_account_creator_get_domain(LinphoneAccountCreator *obj);
599 int linphone_account_creator_test_existence(LinphoneAccountCreator *obj);
600 int linphone_account_creator_test_validation(LinphoneAccountCreator *obj);
601 LinphoneProxyConfig * linphone_account_creator_validate(LinphoneAccountCreator *obj);
602 void linphone_account_creator_destroy(LinphoneAccountCreator *obj);
603
604 struct _LinphoneAuthInfo;
605
606 /**
607  * @ingroup authentication
608  * Object holding authentication information.
609  *
610  * @note The object's fields should not be accessed directly. Prefer using
611  * the accessor methods.
612  *
613  * In most case, authentication information consists of a username and password.
614  * Sometimes, a userid is required by proxy, and realm can be useful to discriminate
615  * different SIP domains.
616  *
617  * Once created and filled, a LinphoneAuthInfo must be added to the LinphoneCore in
618  * order to become known and used automatically when needed.
619  * Use linphone_core_add_auth_info() for that purpose.
620  *
621  * The LinphoneCore object can take the initiative to request authentication information
622  * when needed to the application through the auth_info_requested callback of the
623  * LinphoneCoreVTable structure.
624  *
625  * The application can respond to this information request later using
626  * linphone_core_add_auth_info(). This will unblock all pending authentication
627  * transactions and retry them with authentication headers.
628  *
629 **/
630 typedef struct _LinphoneAuthInfo LinphoneAuthInfo;
631
632 LinphoneAuthInfo *linphone_auth_info_new(const char *username, const char *userid,
633                 const char *passwd, const char *ha1,const char *realm);
634 void linphone_auth_info_set_passwd(LinphoneAuthInfo *info, const char *passwd);
635 void linphone_auth_info_set_username(LinphoneAuthInfo *info, const char *username);
636 void linphone_auth_info_set_userid(LinphoneAuthInfo *info, const char *userid);
637 void linphone_auth_info_set_realm(LinphoneAuthInfo *info, const char *realm);
638 void linphone_auth_info_set_ha1(LinphoneAuthInfo *info, const char *ha1);
639
640 const char *linphone_auth_info_get_username(const LinphoneAuthInfo *i);
641 const char *linphone_auth_info_get_passwd(const LinphoneAuthInfo *i);
642 const char *linphone_auth_info_get_userid(const LinphoneAuthInfo *i);
643 const char *linphone_auth_info_get_realm(const LinphoneAuthInfo *i);
644 const char *linphone_auth_info_get_ha1(const LinphoneAuthInfo *i);
645
646 /* you don't need those function*/
647 void linphone_auth_info_destroy(LinphoneAuthInfo *info);
648 LinphoneAuthInfo * linphone_auth_info_new_from_config_file(struct _LpConfig *config, int pos);
649
650
651 struct _LinphoneChatRoom;
652 /**
653  * @addtogroup chatroom
654  * @{
655  */
656
657 /**
658  * A chat room message to old content to be sent.
659  * <br> Can be created by linphone_chat_room_create_message().
660  */
661 typedef struct _LinphoneChatMessage LinphoneChatMessage;
662         
663 /**
664  * A chat room is the place where text messages are exchanged.
665  * <br> Can be created by linphone_core_create_chat_room().
666  */
667 typedef struct _LinphoneChatRoom LinphoneChatRoom;
668
669 /**
670  *LinphoneChatMessageState is used to notify if messages have been succesfully delivered or not.
671  */
672 typedef enum _LinphoneChatMessageStates {
673         LinphoneChatMessageStateIdle, /**<initial state*/
674         LinphoneChatMessageStateInProgress, /**<delivery in progress**/
675         LinphoneChatMessageStateDelivered, /**<message succesffully delivered an acknoleged by remote end point*/
676         LinphoneChatMessageStateNotDelivered /**<message was not delivered*/
677 }LinphoneChatMessageState;
678
679 /**
680  * Call back used to notify message delivery status
681  *@param msg #LinphoneChatMessage object
682  *@param status LinphoneChatMessageState
683  *@param ud application user data
684  */
685 typedef void (*LinphoneChatMessageStateChangeCb)(LinphoneChatMessage* msg,LinphoneChatMessageState state,void* ud);
686
687 void linphone_core_set_chat_database_path(LinphoneCore *lc, const char *path);
688 LinphoneChatRoom * linphone_core_create_chat_room(LinphoneCore *lc, const char *to);
689 LinphoneChatRoom *linphone_core_get_chat_room(LinphoneCore *lc, const LinphoneAddress *addr);
690 void linphone_chat_room_destroy(LinphoneChatRoom *cr);
691 LinphoneChatMessage* linphone_chat_room_create_message(LinphoneChatRoom *cr,const char* message);
692 const LinphoneAddress* linphone_chat_room_get_peer_address(LinphoneChatRoom *cr);
693 void linphone_chat_room_send_message(LinphoneChatRoom *cr, const char *msg);
694 void linphone_chat_room_send_message2(LinphoneChatRoom *cr, LinphoneChatMessage* msg,LinphoneChatMessageStateChangeCb status_cb,void* ud);
695 MSList *linphone_chat_room_get_history(LinphoneChatRoom *cr,int nb_message);
696 void linphone_chat_room_mark_as_read(LinphoneChatRoom *cr);
697 void linphone_chat_room_delete_history(LinphoneChatRoom *cr);
698 int linphone_chat_room_get_unread_messages_count(LinphoneChatRoom *cr);
699 LinphoneCore* linphone_chat_room_get_lc(LinphoneChatRoom *cr);
700 void linphone_chat_room_set_user_data(LinphoneChatRoom *cr, void * ud);
701 void * linphone_chat_room_get_user_data(LinphoneChatRoom *cr);
702
703 LinphoneChatMessageState linphone_chat_message_get_state(const LinphoneChatMessage* message);
704 const char* linphone_chat_message_state_to_string(const LinphoneChatMessageState state);
705 LinphoneChatMessage* linphone_chat_message_clone(const LinphoneChatMessage* message);
706 void linphone_chat_message_destroy(LinphoneChatMessage* msg);
707 void linphone_chat_message_set_from(LinphoneChatMessage* message, const LinphoneAddress* from);
708 const LinphoneAddress* linphone_chat_message_get_from(const LinphoneChatMessage* message);
709 const LinphoneAddress* linphone_chat_message_get_to(const LinphoneChatMessage* message);
710 const char* linphone_chat_message_get_external_body_url(const LinphoneChatMessage* message);
711 void linphone_chat_message_set_external_body_url(LinphoneChatMessage* message,const char* url);
712 const char * linphone_chat_message_get_text(const LinphoneChatMessage* message);
713 time_t linphone_chat_message_get_time(const LinphoneChatMessage* message);
714 void* linphone_chat_message_get_user_data(const LinphoneChatMessage* message);
715 void linphone_chat_message_set_user_data(LinphoneChatMessage* message,void*);
716 LinphoneChatRoom* linphone_chat_message_get_chat_room(LinphoneChatMessage *msg);
717 const LinphoneAddress* linphone_chat_message_get_peer_address(LinphoneChatMessage *msg);
718 LinphoneAddress *linphone_chat_message_get_local_address(const LinphoneChatMessage* message);
719 void linphone_chat_message_add_custom_header(LinphoneChatMessage* message, const char *header_name, const char *header_value);
720 const char * linphone_chat_message_get_custom_header(LinphoneChatMessage* message, const char *header_name);
721
722 /**
723  * @}
724  */
725
726
727 /**
728  * @addtogroup initializing
729  * @{
730 **/
731
732 /**
733  * LinphoneGlobalState describes the global state of the LinphoneCore object.
734  * It is notified via the LinphoneCoreVTable::global_state_changed
735 **/
736 typedef enum _LinphoneGlobalState{
737         LinphoneGlobalOff,
738         LinphoneGlobalStartup,
739         LinphoneGlobalOn,
740         LinphoneGlobalShutdown
741 }LinphoneGlobalState;
742
743 const char *linphone_global_state_to_string(LinphoneGlobalState gs);
744
745
746 /**Call state notification callback prototype*/
747 typedef void (*LinphoneGlobalStateCb)(struct _LinphoneCore *lc, LinphoneGlobalState gstate, const char *message);
748 /**Call state notification callback prototype*/
749 typedef void (*LinphoneCallStateCb)(struct _LinphoneCore *lc, LinphoneCall *call, LinphoneCallState cstate, const char *message);
750 /**Call encryption changed callback prototype*/
751 typedef void (*CallEncryptionChangedCb)(struct _LinphoneCore *lc, LinphoneCall *call, bool_t on, const char *authentication_token);
752
753 /** @ingroup Proxies
754  * Registration state notification callback prototype
755  * */
756 typedef void (*LinphoneRegistrationStateCb)(struct _LinphoneCore *lc, LinphoneProxyConfig *cfg, LinphoneRegistrationState cstate, const char *message);
757 /** Callback prototype */
758 typedef void (*ShowInterfaceCb)(struct _LinphoneCore *lc);
759 /** Callback prototype */
760 typedef void (*DisplayStatusCb)(struct _LinphoneCore *lc, const char *message);
761 /** Callback prototype */
762 typedef void (*DisplayMessageCb)(struct _LinphoneCore *lc, const char *message);
763 /** Callback prototype */
764 typedef void (*DisplayUrlCb)(struct _LinphoneCore *lc, const char *message, const char *url);
765 /** Callback prototype */
766 typedef void (*LinphoneCoreCbFunc)(struct _LinphoneCore *lc,void * user_data);
767 /** Callback prototype */
768 typedef void (*NotifyReceivedCb)(struct _LinphoneCore *lc, LinphoneCall *call, const char *from, const char *event);
769 /**
770  * Report status change for a friend previously \link linphone_core_add_friend() added \endlink to #LinphoneCore.
771  * @param lc #LinphoneCore object .
772  * @param lf Updated #LinphoneFriend .
773  */
774 typedef void (*NotifyPresenceReceivedCb)(struct _LinphoneCore *lc, LinphoneFriend * lf);
775 /**
776  *  Reports that a new subscription request has been received and wait for a decision.
777  *  <br> Status on this subscription request is notified by \link linphone_friend_set_inc_subscribe_policy() changing policy \endlink for this friend
778  *      @param lc #LinphoneCore object
779  *      @param lf #LinphoneFriend corresponding to the subscriber
780  *      @param url of the subscriber
781  *  Callback prototype
782  *  */
783 typedef void (*NewSubscribtionRequestCb)(struct _LinphoneCore *lc, LinphoneFriend *lf, const char *url);
784 /** Callback prototype */
785 typedef void (*AuthInfoRequested)(struct _LinphoneCore *lc, const char *realm, const char *username);
786 /** Callback prototype */
787 typedef void (*CallLogUpdated)(struct _LinphoneCore *lc, struct _LinphoneCallLog *newcl);
788 /**
789  * Callback prototype
790  * @deprecated use #MessageReceived instead.
791  *
792  * @param lc #LinphoneCore object
793  * @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.
794  * @param from #LinphoneAddress from
795  * @param message incoming message
796  *  */
797 typedef void (*TextMessageReceived)(LinphoneCore *lc, LinphoneChatRoom *room, const LinphoneAddress *from, const char *message);
798 /**
799  * Chat message callback prototype
800  *
801  * @param lc #LinphoneCore object
802  * @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.
803  * @param LinphoneChatMessage incoming message
804  * */
805 typedef void (*MessageReceived)(LinphoneCore *lc, LinphoneChatRoom *room, LinphoneChatMessage *message);
806         
807 /** Callback prototype */
808 typedef void (*DtmfReceived)(struct _LinphoneCore* lc, LinphoneCall *call, int dtmf);
809 /** Callback prototype */
810 typedef void (*ReferReceived)(struct _LinphoneCore *lc, const char *refer_to);
811 /** Callback prototype */
812 typedef void (*BuddyInfoUpdated)(struct _LinphoneCore *lc, LinphoneFriend *lf);
813 /** Callback prototype for in progress transfers. The new_call_state is the state of the call resulting of the transfer, at the other party. */
814 typedef void (*LinphoneTransferStateChanged)(struct _LinphoneCore *lc, LinphoneCall *transfered, LinphoneCallState new_call_state);
815 /** Callback prototype for receiving quality statistics for calls*/
816 typedef void (*CallStatsUpdated)(struct _LinphoneCore *lc, LinphoneCall *call, const LinphoneCallStats *stats);
817
818 /**
819  * This structure holds all callbacks that the application should implement.
820  *  None is mandatory.
821 **/
822 typedef struct _LinphoneVTable{
823         LinphoneGlobalStateCb global_state_changed; /**<Notifies globlal state changes*/
824         LinphoneRegistrationStateCb registration_state_changed;/**<Notifies registration state changes*/
825         LinphoneCallStateCb call_state_changed;/**<Notifies call state changes*/
826         NotifyPresenceReceivedCb notify_presence_recv; /**< Notify received presence events*/
827         NewSubscribtionRequestCb new_subscription_request; /**< Notify about pending subscription request */
828         AuthInfoRequested auth_info_requested; /**< Ask the application some authentication information */
829         CallLogUpdated call_log_updated; /**< Notifies that call log list has been updated */
830         TextMessageReceived text_received; /** @deprecated, use #message_received instead <br> A text message has been received */
831         MessageReceived message_received; /** a message is received, can be text or external body*/
832         DtmfReceived dtmf_received; /**< A dtmf has been received received */
833         ReferReceived refer_received; /**< An out of call refer was received */
834         CallEncryptionChangedCb call_encryption_changed; /**<Notifies on change in the encryption of call streams */
835         LinphoneTransferStateChanged transfer_state_changed; /**<Notifies when a transfer is in progress */
836         BuddyInfoUpdated buddy_info_updated; /**< a LinphoneFriend's BuddyInfo has changed*/
837         NotifyReceivedCb notify_recv; /**< Other notifications*/
838         CallStatsUpdated call_stats_updated; /**<Notifies on refreshing of call's statistics. */
839         DisplayStatusCb display_status; /**< DEPRECATED Callback that notifies various events with human readable text.*/
840         DisplayMessageCb display_message;/**< DEPRECATED Callback to display a message to the user */
841         DisplayMessageCb display_warning;/**< DEPRECATED Callback to display a warning to the user */
842         DisplayUrlCb display_url; /**< DEPRECATED */
843         ShowInterfaceCb show; /**< DEPRECATED Notifies the application that it should show up*/
844 } LinphoneCoreVTable;
845
846 /**
847  * @}
848 **/
849
850 typedef struct _LCCallbackObj
851 {
852   LinphoneCoreCbFunc _func;
853   void * _user_data;
854 }LCCallbackObj;
855
856
857
858 typedef enum _LinphoneFirewallPolicy{
859         LinphonePolicyNoFirewall,
860         LinphonePolicyUseNatAddress,
861         LinphonePolicyUseStun,
862         LinphonePolicyUseIce,
863         LinphonePolicyUseUpnp,
864 } LinphoneFirewallPolicy;
865
866 typedef enum _LinphoneWaitingState{
867         LinphoneWaitingStart,
868         LinphoneWaitingProgress,
869         LinphoneWaitingFinished
870 } LinphoneWaitingState;
871 typedef void * (*LinphoneWaitingCallback)(struct _LinphoneCore *lc, void *context, LinphoneWaitingState ws, const char *purpose, float progress);
872
873
874 /* THE main API */
875
876 void linphone_core_enable_logs(FILE *file);
877 void linphone_core_enable_logs_with_cb(OrtpLogFunc logfunc);
878 void linphone_core_disable_logs(void);
879 const char *linphone_core_get_version(void);
880 const char *linphone_core_get_user_agent_name(void);
881 const char *linphone_core_get_user_agent_version(void);
882
883 LinphoneCore *linphone_core_new(const LinphoneCoreVTable *vtable,
884                                                 const char *config_path, const char *factory_config, void* userdata);
885
886 /* function to be periodically called in a main loop */
887 /* For ICE to work properly it should be called every 20ms */
888 void linphone_core_iterate(LinphoneCore *lc);
889 #if 0 /*not implemented yet*/
890 /**
891  * @ingroup initializing
892  * Provide Linphone Core with an unique identifier. This be later used to identified contact address coming from this device.
893  * Value is not saved.
894  * @param lc object
895  * @param string identifying the device, can be EMEI or UDID
896  *
897  */
898 void linphone_core_set_device_identifier(LinphoneCore *lc,const char* device_id);
899 /**
900  * @ingroup initializing
901  * get Linphone unique identifier
902  *
903  */
904 const char*  linphone_core_get_device_identifier(const LinphoneCore *lc);
905
906 #endif
907
908 /*sets the user-agent string in sip messages, ideally called just after linphone_core_new() or linphone_core_init() */
909 void linphone_core_set_user_agent(LinphoneCore *lc, const char *ua_name, const char *version);
910
911 LinphoneAddress * linphone_core_interpret_url(LinphoneCore *lc, const char *url);
912
913 LinphoneCall * linphone_core_invite(LinphoneCore *lc, const char *url);
914
915 LinphoneCall * linphone_core_invite_address(LinphoneCore *lc, const LinphoneAddress *addr);
916
917 LinphoneCall * linphone_core_invite_with_params(LinphoneCore *lc, const char *url, const LinphoneCallParams *params);
918
919 LinphoneCall * linphone_core_invite_address_with_params(LinphoneCore *lc, const LinphoneAddress *addr, const LinphoneCallParams *params);
920
921 int linphone_core_transfer_call(LinphoneCore *lc, LinphoneCall *call, const char *refer_to);
922
923 int linphone_core_transfer_call_to_another(LinphoneCore *lc, LinphoneCall *call, LinphoneCall *dest);
924
925 bool_t linphone_core_inc_invite_pending(LinphoneCore*lc);
926
927 bool_t linphone_core_in_call(const LinphoneCore *lc);
928
929 LinphoneCall *linphone_core_get_current_call(const LinphoneCore *lc);
930
931 int linphone_core_accept_call(LinphoneCore *lc, LinphoneCall *call);
932
933 int linphone_core_accept_call_with_params(LinphoneCore *lc, LinphoneCall *call, const LinphoneCallParams *params);
934
935 int linphone_core_terminate_call(LinphoneCore *lc, LinphoneCall *call);
936
937 int linphone_core_redirect_call(LinphoneCore *lc, LinphoneCall *call, const char *redirect_uri);
938
939 int linphone_core_decline_call(LinphoneCore *lc, LinphoneCall * call, LinphoneReason reason);
940
941 int linphone_core_terminate_all_calls(LinphoneCore *lc);
942
943 int linphone_core_pause_call(LinphoneCore *lc, LinphoneCall *call);
944
945 int linphone_core_pause_all_calls(LinphoneCore *lc);
946
947 int linphone_core_resume_call(LinphoneCore *lc, LinphoneCall *call);
948
949 int linphone_core_update_call(LinphoneCore *lc, LinphoneCall *call, const LinphoneCallParams *params);
950
951 int linphone_core_defer_call_update(LinphoneCore *lc, LinphoneCall *call);
952
953 int linphone_core_accept_call_update(LinphoneCore *lc, LinphoneCall *call, const LinphoneCallParams *params);
954 /**
955  * @ingroup media_parameters
956  * Get default call parameters reflecting current linphone core configuration
957  * @param LinphoneCore object
958  * @return  LinphoneCallParams
959  */
960 LinphoneCallParams *linphone_core_create_default_call_parameters(LinphoneCore *lc);
961
962 LinphoneCall *linphone_core_get_call_by_remote_address(LinphoneCore *lc, const char *remote_address);
963
964 void linphone_core_send_dtmf(LinphoneCore *lc,char dtmf);
965
966 int linphone_core_set_primary_contact(LinphoneCore *lc, const char *contact);
967
968 const char *linphone_core_get_primary_contact(LinphoneCore *lc);
969
970 const char * linphone_core_get_identity(LinphoneCore *lc);
971
972 void linphone_core_set_guess_hostname(LinphoneCore *lc, bool_t val);
973 bool_t linphone_core_get_guess_hostname(LinphoneCore *lc);
974
975 bool_t linphone_core_ipv6_enabled(LinphoneCore *lc);
976 void linphone_core_enable_ipv6(LinphoneCore *lc, bool_t val);
977
978 LinphoneAddress *linphone_core_get_primary_contact_parsed(LinphoneCore *lc);
979 const char * linphone_core_get_identity(LinphoneCore *lc);
980 /*0= no bandwidth limit*/
981 void linphone_core_set_download_bandwidth(LinphoneCore *lc, int bw);
982 void linphone_core_set_upload_bandwidth(LinphoneCore *lc, int bw);
983
984 int linphone_core_get_download_bandwidth(const LinphoneCore *lc);
985 int linphone_core_get_upload_bandwidth(const LinphoneCore *lc);
986
987 void linphone_core_enable_adaptive_rate_control(LinphoneCore *lc, bool_t enabled);
988 bool_t linphone_core_adaptive_rate_control_enabled(const LinphoneCore *lc);
989
990 void linphone_core_set_download_ptime(LinphoneCore *lc, int ptime);
991 int  linphone_core_get_download_ptime(LinphoneCore *lc);
992
993 void linphone_core_set_upload_ptime(LinphoneCore *lc, int ptime);
994
995 int linphone_core_get_upload_ptime(LinphoneCore *lc);
996
997 /* returns a MSList of PayloadType */
998 const MSList *linphone_core_get_audio_codecs(const LinphoneCore *lc);
999
1000 int linphone_core_set_audio_codecs(LinphoneCore *lc, MSList *codecs);
1001 /* returns a MSList of PayloadType */
1002 const MSList *linphone_core_get_video_codecs(const LinphoneCore *lc);
1003
1004 int linphone_core_set_video_codecs(LinphoneCore *lc, MSList *codecs);
1005
1006 bool_t linphone_core_payload_type_enabled(LinphoneCore *lc, const PayloadType *pt);
1007 /**
1008  * Enable payload type
1009  * @param linphone core
1010  * @param pt payload type to enable, can be retrieve from #linphone_core_find_payload_type
1011  * @param TRUE if enabled
1012  * @return 0 if succed
1013  *
1014  */
1015 int linphone_core_enable_payload_type(LinphoneCore *lc, PayloadType *pt, bool_t enable);
1016
1017 /**
1018  * Wildcard value used by #linphone_core_find_payload_type to ignore rate in search algorithm
1019  * @ingroup media_parameters
1020  */
1021 #define LINPHONE_FIND_PAYLOAD_IGNORE_RATE -1
1022 /**
1023  * Wildcard value used by #linphone_core_find_payload_type to ignore channel in search algorithm
1024  * @ingroup media_parameters
1025  */
1026 #define LINPHONE_FIND_PAYLOAD_IGNORE_CHANNELS -1
1027 /**
1028  * Get payload type from mime type and clock rate
1029  * @ingroup media_parameters
1030  * This function searches in audio and video codecs for the given payload type name and clockrate.
1031  * @param lc #LinphoneCore object
1032  * @param type payload mime type (I.E SPEEX, PCMU, VP8)
1033  * @param rate can be #LINPHONE_FIND_PAYLOAD_IGNORE_RATE
1034  * @param channels  number of channels, can be #LINPHONE_FIND_PAYLOAD_IGNORE_CHANNELS
1035  * @return Returns NULL if not found.
1036  */     
1037 PayloadType* linphone_core_find_payload_type(LinphoneCore* lc, const char* type, int rate, int channels) ;
1038
1039 int linphone_core_get_payload_type_number(LinphoneCore *lc, const PayloadType *pt);
1040
1041 const char *linphone_core_get_payload_type_description(LinphoneCore *lc, PayloadType *pt);
1042
1043 bool_t linphone_core_check_payload_type_usability(LinphoneCore *lc, PayloadType *pt);
1044
1045 /**
1046  * @ingroup proxy 
1047  *Create a proxy config with default value from Linphone core.
1048  *@param lc #LinphoneCore object
1049  *@return #LinphoneProxyConfig with defualt value set 
1050  */
1051 LinphoneProxyConfig * linphone_core_create_proxy_config(LinphoneCore *lc);
1052         
1053 int linphone_core_add_proxy_config(LinphoneCore *lc, LinphoneProxyConfig *config);
1054
1055 void linphone_core_clear_proxy_config(LinphoneCore *lc);
1056
1057 void linphone_core_remove_proxy_config(LinphoneCore *lc, LinphoneProxyConfig *config);
1058
1059 const MSList *linphone_core_get_proxy_config_list(const LinphoneCore *lc);
1060
1061 void linphone_core_set_default_proxy(LinphoneCore *lc, LinphoneProxyConfig *config);
1062
1063 void linphone_core_set_default_proxy_index(LinphoneCore *lc, int index);
1064
1065 int linphone_core_get_default_proxy(LinphoneCore *lc, LinphoneProxyConfig **config);
1066
1067 void linphone_core_add_auth_info(LinphoneCore *lc, const LinphoneAuthInfo *info);
1068
1069 void linphone_core_remove_auth_info(LinphoneCore *lc, const LinphoneAuthInfo *info);
1070
1071 const MSList *linphone_core_get_auth_info_list(const LinphoneCore *lc);
1072
1073 const LinphoneAuthInfo *linphone_core_find_auth_info(LinphoneCore *lc, const char *realm, const char *username);
1074
1075 void linphone_core_abort_authentication(LinphoneCore *lc,  LinphoneAuthInfo *info);
1076
1077 void linphone_core_clear_all_auth_info(LinphoneCore *lc);
1078
1079 void linphone_core_enable_audio_adaptive_jittcomp(LinphoneCore *lc, bool_t enable);
1080
1081 bool_t linphone_core_audio_adaptive_jittcomp_enabled(LinphoneCore *lc);
1082
1083 int linphone_core_get_audio_jittcomp(LinphoneCore *lc);
1084
1085 void linphone_core_set_audio_jittcomp(LinphoneCore *lc, int value);
1086
1087 void linphone_core_enable_video_adaptive_jittcomp(LinphoneCore *lc, bool_t enable);
1088
1089 bool_t linphone_core_video_adaptive_jittcomp_enabled(LinphoneCore *lc);
1090
1091 int linphone_core_get_video_jittcomp(LinphoneCore *lc);
1092
1093 void linphone_core_set_video_jittcomp(LinphoneCore *lc, int value);
1094
1095 int linphone_core_get_audio_port(const LinphoneCore *lc);
1096
1097 void linphone_core_get_audio_port_range(const LinphoneCore *lc, int *min_port, int *max_port);
1098
1099 int linphone_core_get_video_port(const LinphoneCore *lc);
1100
1101 void linphone_core_get_video_port_range(const LinphoneCore *lc, int *min_port, int *max_port);
1102
1103 int linphone_core_get_nortp_timeout(const LinphoneCore *lc);
1104
1105 void linphone_core_set_audio_port(LinphoneCore *lc, int port);
1106
1107 void linphone_core_set_audio_port_range(LinphoneCore *lc, int min_port, int max_port);
1108
1109 void linphone_core_set_video_port(LinphoneCore *lc, int port);
1110
1111 void linphone_core_set_video_port_range(LinphoneCore *lc, int min_port, int max_port);
1112
1113 void linphone_core_set_nortp_timeout(LinphoneCore *lc, int port);
1114
1115 void linphone_core_set_use_info_for_dtmf(LinphoneCore *lc, bool_t use_info);
1116
1117 bool_t linphone_core_get_use_info_for_dtmf(LinphoneCore *lc);
1118
1119 void linphone_core_set_use_rfc2833_for_dtmf(LinphoneCore *lc,bool_t use_rfc2833);
1120
1121 bool_t linphone_core_get_use_rfc2833_for_dtmf(LinphoneCore *lc);
1122
1123 void linphone_core_set_sip_port(LinphoneCore *lc, int port);
1124
1125 int linphone_core_get_sip_port(LinphoneCore *lc);
1126
1127 int linphone_core_set_sip_transports(LinphoneCore *lc, const LCSipTransports *transports);
1128
1129 int linphone_core_get_sip_transports(LinphoneCore *lc, LCSipTransports *transports);
1130 /**
1131  *
1132  * Give access to the UDP sip socket. Can be useful to configure this socket as persistent I.E kCFStreamNetworkServiceType set to kCFStreamNetworkServiceTypeVoIP)
1133  * @param lc #LinphoneCore
1134  * @return socket file descriptor
1135  */
1136 ortp_socket_t linphone_core_get_sip_socket(LinphoneCore *lc);
1137
1138 void linphone_core_set_inc_timeout(LinphoneCore *lc, int seconds);
1139
1140 int linphone_core_get_inc_timeout(LinphoneCore *lc);
1141
1142 void linphone_core_set_in_call_timeout(LinphoneCore *lc, int seconds);
1143
1144 int linphone_core_get_in_call_timeout(LinphoneCore *lc);
1145
1146 void linphone_core_set_delayed_timeout(LinphoneCore *lc, int seconds);
1147
1148 int linphone_core_get_delayed_timeout(LinphoneCore *lc);
1149
1150 void linphone_core_set_stun_server(LinphoneCore *lc, const char *server);
1151
1152 const char * linphone_core_get_stun_server(const LinphoneCore *lc);
1153
1154 /**
1155  * @ingroup network_parameters
1156  * Return the availability of uPnP.
1157  *
1158  * @param lc #LinphoneCore
1159  * @return true if uPnP is available otherwise return false. 
1160  */
1161 bool_t linphone_core_upnp_available(const LinphoneCore *lc);
1162
1163 /**
1164  * @ingroup network_parameters
1165  * Return the internal state of uPnP. 
1166  *
1167  * @param lc #LinphoneCore
1168  * @return an LinphoneUpnpState. 
1169  */
1170 LinphoneUpnpState linphone_core_get_upnp_state(const LinphoneCore *lc);
1171
1172 /**
1173  * @ingroup network_parameters
1174  * Return the external ip address of router. 
1175  * In some cases the uPnP can have an external ip address but not a usable uPnP
1176  * (state different of Ok). 
1177  *
1178  * @param lc #LinphoneCore
1179  * @return a null terminated string containing the external ip address. If the
1180  * the external ip address is not available return null. 
1181  */
1182 const char * linphone_core_get_upnp_external_ipaddress(const LinphoneCore *lc);
1183
1184 void linphone_core_set_nat_address(LinphoneCore *lc, const char *addr);
1185
1186 const char *linphone_core_get_nat_address(const LinphoneCore *lc);
1187
1188 void linphone_core_set_firewall_policy(LinphoneCore *lc, LinphoneFirewallPolicy pol);
1189
1190 LinphoneFirewallPolicy linphone_core_get_firewall_policy(const LinphoneCore *lc);
1191
1192 const char * linphone_core_get_relay_addr(const LinphoneCore *lc);
1193
1194 int linphone_core_set_relay_addr(LinphoneCore *lc, const char *addr);
1195
1196 /* sound functions */
1197 /* returns a null terminated static array of string describing the sound devices */
1198 const char**  linphone_core_get_sound_devices(LinphoneCore *lc);
1199 void linphone_core_reload_sound_devices(LinphoneCore *lc);
1200 bool_t linphone_core_sound_device_can_capture(LinphoneCore *lc, const char *device);
1201 bool_t linphone_core_sound_device_can_playback(LinphoneCore *lc, const char *device);
1202 int linphone_core_get_ring_level(LinphoneCore *lc);
1203 int linphone_core_get_play_level(LinphoneCore *lc);
1204 int linphone_core_get_rec_level(LinphoneCore *lc);
1205 void linphone_core_set_ring_level(LinphoneCore *lc, int level);
1206 void linphone_core_set_play_level(LinphoneCore *lc, int level);
1207
1208 void linphone_core_set_mic_gain_db(LinphoneCore *lc, float level);
1209 float linphone_core_get_mic_gain_db(LinphoneCore *lc);
1210 void linphone_core_set_playback_gain_db(LinphoneCore *lc, float level);
1211 float linphone_core_get_playback_gain_db(LinphoneCore *lc);
1212
1213 void linphone_core_set_rec_level(LinphoneCore *lc, int level);
1214 const char * linphone_core_get_ringer_device(LinphoneCore *lc);
1215 const char * linphone_core_get_playback_device(LinphoneCore *lc);
1216 const char * linphone_core_get_capture_device(LinphoneCore *lc);
1217 int linphone_core_set_ringer_device(LinphoneCore *lc, const char * devid);
1218 int linphone_core_set_playback_device(LinphoneCore *lc, const char * devid);
1219 int linphone_core_set_capture_device(LinphoneCore *lc, const char * devid);
1220 char linphone_core_get_sound_source(LinphoneCore *lc);
1221 void linphone_core_set_sound_source(LinphoneCore *lc, char source);
1222 void linphone_core_set_ring(LinphoneCore *lc, const char *path);
1223 const char *linphone_core_get_ring(const LinphoneCore *lc);
1224 void linphone_core_verify_server_certificates(LinphoneCore *lc, bool_t yesno);
1225 void linphone_core_verify_server_cn(LinphoneCore *lc, bool_t yesno);
1226 void linphone_core_set_root_ca(LinphoneCore *lc, const char *path);
1227 const char *linphone_core_get_root_ca(LinphoneCore *lc);
1228 void linphone_core_set_ringback(LinphoneCore *lc, const char *path);
1229 const char * linphone_core_get_ringback(const LinphoneCore *lc);
1230
1231 void linphone_core_set_remote_ringback_tone(LinphoneCore *lc,const char *);
1232 const char *linphone_core_get_remote_ringback_tone(const LinphoneCore *lc);
1233
1234 int linphone_core_preview_ring(LinphoneCore *lc, const char *ring,LinphoneCoreCbFunc func,void * userdata);
1235 void linphone_core_enable_echo_cancellation(LinphoneCore *lc, bool_t val);
1236 bool_t linphone_core_echo_cancellation_enabled(LinphoneCore *lc);
1237
1238 void linphone_core_enable_echo_limiter(LinphoneCore *lc, bool_t val);
1239 bool_t linphone_core_echo_limiter_enabled(const LinphoneCore *lc);
1240
1241 void linphone_core_enable_agc(LinphoneCore *lc, bool_t val);
1242 bool_t linphone_core_agc_enabled(const LinphoneCore *lc);
1243
1244 void linphone_core_mute_mic(LinphoneCore *lc, bool_t muted);
1245 /**
1246  * return mic state.
1247  *
1248  * @ingroup media_parameters
1249 **/
1250 bool_t linphone_core_is_mic_muted(LinphoneCore *lc);
1251
1252 bool_t linphone_core_is_rtp_muted(LinphoneCore *lc);
1253
1254 bool_t linphone_core_get_rtp_no_xmit_on_audio_mute(const LinphoneCore *lc);
1255 void linphone_core_set_rtp_no_xmit_on_audio_mute(LinphoneCore *lc, bool_t val);
1256
1257
1258 /* returns a list of LinphoneCallLog */
1259 const MSList * linphone_core_get_call_logs(LinphoneCore *lc);
1260 void linphone_core_clear_call_logs(LinphoneCore *lc);
1261 int linphone_core_get_missed_calls_count(LinphoneCore *lc);
1262 void linphone_core_reset_missed_calls_count(LinphoneCore *lc);
1263 void linphone_core_remove_call_log(LinphoneCore *lc, LinphoneCallLog *call_log);
1264
1265 /* video support */
1266 bool_t linphone_core_video_supported(LinphoneCore *lc);
1267 void linphone_core_enable_video(LinphoneCore *lc, bool_t vcap_enabled, bool_t display_enabled);
1268 bool_t linphone_core_video_enabled(LinphoneCore *lc);
1269 void linphone_core_set_video_policy(LinphoneCore *lc, const LinphoneVideoPolicy *policy);
1270 const LinphoneVideoPolicy *linphone_core_get_video_policy(LinphoneCore *lc);
1271
1272 typedef struct MSVideoSizeDef{
1273         MSVideoSize vsize;
1274         const char *name;
1275 }MSVideoSizeDef;
1276 /* returns a zero terminated table of MSVideoSizeDef*/
1277 const MSVideoSizeDef *linphone_core_get_supported_video_sizes(LinphoneCore *lc);
1278 void linphone_core_set_preferred_video_size(LinphoneCore *lc, MSVideoSize vsize);
1279 MSVideoSize linphone_core_get_preferred_video_size(LinphoneCore *lc);
1280 void linphone_core_set_preferred_video_size_by_name(LinphoneCore *lc, const char *name);
1281
1282 void linphone_core_enable_video_preview(LinphoneCore *lc, bool_t val);
1283 bool_t linphone_core_video_preview_enabled(const LinphoneCore *lc);
1284
1285 void linphone_core_enable_self_view(LinphoneCore *lc, bool_t val);
1286 bool_t linphone_core_self_view_enabled(const LinphoneCore *lc);
1287
1288
1289 /* returns a null terminated static array of string describing the webcams */
1290 void linphone_core_reload_video_devices(LinphoneCore *lc);
1291 const char**  linphone_core_get_video_devices(const LinphoneCore *lc);
1292 int linphone_core_set_video_device(LinphoneCore *lc, const char *id);
1293 const char *linphone_core_get_video_device(const LinphoneCore *lc);
1294
1295 /* Set and get static picture to be used when "Static picture" is the video device */
1296 int linphone_core_set_static_picture(LinphoneCore *lc, const char *path);
1297 const char *linphone_core_get_static_picture(LinphoneCore *lc);
1298
1299 /* Set and get frame rate for static picture */
1300 int linphone_core_set_static_picture_fps(LinphoneCore *lc, float fps);
1301 float linphone_core_get_static_picture_fps(LinphoneCore *lc);
1302
1303 /*function to be used for eventually setting window decorations (icons, title...)*/
1304 unsigned long linphone_core_get_native_video_window_id(const LinphoneCore *lc);
1305 void linphone_core_set_native_video_window_id(LinphoneCore *lc, unsigned long id);
1306
1307 unsigned long linphone_core_get_native_preview_window_id(const LinphoneCore *lc);
1308 void linphone_core_set_native_preview_window_id(LinphoneCore *lc, unsigned long id);
1309
1310 void linphone_core_use_preview_window(LinphoneCore *lc, bool_t yesno);
1311 int linphone_core_get_device_rotation(LinphoneCore *lc );
1312 void linphone_core_set_device_rotation(LinphoneCore *lc, int rotation);
1313
1314 /* start or stop streaming video in case of embedded window */
1315 void linphone_core_show_video(LinphoneCore *lc, bool_t show);
1316
1317 /*play/record support: use files instead of soundcard*/
1318 void linphone_core_use_files(LinphoneCore *lc, bool_t yesno);
1319 void linphone_core_set_play_file(LinphoneCore *lc, const char *file);
1320 void linphone_core_set_record_file(LinphoneCore *lc, const char *file);
1321
1322 void linphone_core_play_dtmf(LinphoneCore *lc, char dtmf, int duration_ms);
1323 void linphone_core_stop_dtmf(LinphoneCore *lc);
1324
1325 int linphone_core_get_current_call_duration(const LinphoneCore *lc);
1326
1327
1328 int linphone_core_get_mtu(const LinphoneCore *lc);
1329 void linphone_core_set_mtu(LinphoneCore *lc, int mtu);
1330
1331 /**
1332  * @ingroup network_parameters
1333  * This method is called by the application to notify the linphone core library when network is reachable.
1334  * Calling this method with true trigger linphone to initiate a registration process for all proxies.
1335  * Calling this method disables the automatic network detection mode. It means you must call this method after each network state changes.
1336  */
1337 void linphone_core_set_network_reachable(LinphoneCore* lc,bool_t value);
1338 /**
1339  * @ingroup network_parameters
1340  * return network state either as positioned by the application or by linphone itself.
1341  */
1342 bool_t linphone_core_is_network_reachable(LinphoneCore* lc);
1343
1344 /**
1345  *  @ingroup network_parameters
1346  *  enable signaling keep alive. small udp packet sent periodically to keep udp NAT association
1347  */
1348 void linphone_core_enable_keep_alive(LinphoneCore* lc,bool_t enable);
1349 /**
1350  *  @ingroup network_parameters
1351  * Is signaling keep alive
1352  */
1353 bool_t linphone_core_keep_alive_enabled(LinphoneCore* lc);
1354
1355 void *linphone_core_get_user_data(LinphoneCore *lc);
1356 void linphone_core_set_user_data(LinphoneCore *lc, void *userdata);
1357
1358 /* returns LpConfig object to read/write to the config file: usefull if you wish to extend
1359 the config file with your own sections */
1360 struct _LpConfig *linphone_core_get_config(LinphoneCore *lc);
1361
1362 /*set a callback for some blocking operations, it takes you informed of the progress of the operation*/
1363 void linphone_core_set_waiting_callback(LinphoneCore *lc, LinphoneWaitingCallback cb, void *user_context);
1364
1365 /*returns the list of registered SipSetup (linphonecore plugins) */
1366 const MSList * linphone_core_get_sip_setups(LinphoneCore *lc);
1367
1368 void linphone_core_destroy(LinphoneCore *lc);
1369
1370 /*for advanced users:*/
1371 typedef RtpTransport * (*LinphoneRtpTransportFactoryFunc)(void *data, int port);
1372 struct _LinphoneRtpTransportFactories{
1373         LinphoneRtpTransportFactoryFunc audio_rtp_func;
1374         void *audio_rtp_func_data;
1375         LinphoneRtpTransportFactoryFunc audio_rtcp_func;
1376         void *audio_rtcp_func_data;
1377         LinphoneRtpTransportFactoryFunc video_rtp_func;
1378         void *video_rtp_func_data;
1379         LinphoneRtpTransportFactoryFunc video_rtcp_func;
1380         void *video_rtcp_func_data;
1381 };
1382 typedef struct _LinphoneRtpTransportFactories LinphoneRtpTransportFactories;
1383
1384 void linphone_core_set_rtp_transport_factories(LinphoneCore* lc, LinphoneRtpTransportFactories *factories);
1385
1386 int linphone_core_get_current_call_stats(LinphoneCore *lc, rtp_stats_t *local, rtp_stats_t *remote);
1387
1388 int linphone_core_get_calls_nb(const LinphoneCore *lc);
1389
1390 const MSList *linphone_core_get_calls(LinphoneCore *lc);
1391
1392 LinphoneGlobalState linphone_core_get_global_state(const LinphoneCore *lc);
1393 /**
1394  * force registration refresh to be initiated upon next iterate
1395  * @ingroup proxies
1396  */
1397 void linphone_core_refresh_registers(LinphoneCore* lc);
1398
1399 /* Path to the file storing secrets cache */
1400 void linphone_core_set_zrtp_secrets_file(LinphoneCore *lc, const char* file);
1401 const char *linphone_core_get_zrtp_secrets_file(LinphoneCore *lc);
1402 /**
1403  * Search from the list of current calls if a remote address match uri
1404  * @ingroup call_control
1405  * @param lc
1406  * @param uri which should match call remote uri
1407  * @return LinphoneCall or NULL is no match is found
1408  */
1409 const LinphoneCall* linphone_core_find_call_from_uri(LinphoneCore *lc, const char *uri);
1410
1411 int linphone_core_add_to_conference(LinphoneCore *lc, LinphoneCall *call);
1412 int linphone_core_add_all_to_conference(LinphoneCore *lc);
1413 int linphone_core_remove_from_conference(LinphoneCore *lc, LinphoneCall *call);
1414 bool_t linphone_core_is_in_conference(const LinphoneCore *lc);
1415 int linphone_core_enter_conference(LinphoneCore *lc);
1416 int linphone_core_leave_conference(LinphoneCore *lc);
1417 float linphone_core_get_conference_local_input_volume(LinphoneCore *lc);
1418
1419 int linphone_core_terminate_conference(LinphoneCore *lc);
1420 int linphone_core_get_conference_size(LinphoneCore *lc);
1421 int linphone_core_start_conference_recording(LinphoneCore *lc, const char *path);
1422 int linphone_core_stop_conference_recording(LinphoneCore *lc);
1423 /**
1424  * Get the maximum number of simultaneous calls Linphone core can manage at a time. All new call above this limit are declined with a busy answer
1425  * @ingroup initializing
1426  * @param lc core
1427  * @return max number of simultaneous calls
1428  */
1429 int linphone_core_get_max_calls(LinphoneCore *lc);
1430 /**
1431  * Set the maximum number of simultaneous calls Linphone core can manage at a time. All new call above this limit are declined with a busy answer
1432  * @ingroup initializing
1433  * @param lc core
1434  * @param max number of simultaneous calls
1435  */
1436 void linphone_core_set_max_calls(LinphoneCore *lc, int max);
1437
1438 bool_t linphone_core_sound_resources_locked(LinphoneCore *lc);
1439
1440 bool_t linphone_core_media_encryption_supported(const LinphoneCore *lc, LinphoneMediaEncryption menc);
1441
1442 /**
1443  * Choose media encryption policy to be used for RTP packets
1444  */
1445 int linphone_core_set_media_encryption(LinphoneCore *lc, enum LinphoneMediaEncryption menc);
1446 LinphoneMediaEncryption linphone_core_get_media_encryption(LinphoneCore *lc);
1447
1448 bool_t linphone_core_is_media_encryption_mandatory(LinphoneCore *lc);
1449 /**
1450  * Defines Linphone behaviour when encryption parameters negociation fails on outoing call.
1451  * If set to TRUE call will fail; if set to FALSE will resend an INVITE with encryption disabled
1452  */
1453 void linphone_core_set_media_encryption_mandatory(LinphoneCore *lc, bool_t m);
1454
1455 /**
1456  * Init call params using LinphoneCore's current configuration
1457  */
1458 void linphone_core_init_default_params(LinphoneCore*lc, LinphoneCallParams *params);
1459
1460 /**
1461  * True if tunnel support was compiled.
1462  */
1463 bool_t linphone_core_tunnel_available(void);
1464
1465 typedef struct _LinphoneTunnel LinphoneTunnel;
1466 /**
1467 * get tunnel instance if available
1468 */
1469 LinphoneTunnel *linphone_core_get_tunnel(LinphoneCore *lc);
1470
1471 void linphone_core_set_sip_dscp(LinphoneCore *lc, int dscp);
1472 int linphone_core_get_sip_dscp(const LinphoneCore *lc);
1473
1474 void linphone_core_set_audio_dscp(LinphoneCore *lc, int dscp);
1475 int linphone_core_get_audio_dscp(const LinphoneCore *lc);
1476
1477 void linphone_core_set_video_dscp(LinphoneCore *lc, int dscp);
1478 int linphone_core_get_video_dscp(const LinphoneCore *lc);
1479
1480
1481 #ifdef __cplusplus
1482 }
1483 #endif
1484
1485
1486 #endif