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