blob: c34e7c7bd3d4350c5c95d01f8109e02bd9d2b915 [file] [log] [blame]
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001/* $Id$ */
2/*
Benny Prijono844653c2008-12-23 17:27:53 +00003 * Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
Benny Prijono32177c02008-06-20 22:44:47 +00004 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
Benny Prijonoeebe9af2006-06-13 22:57:13 +00005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#ifndef __PJSUA_INTERNAL_H__
21#define __PJSUA_INTERNAL_H__
22
23/**
24 * This is the private header used by pjsua library implementation.
25 * Applications should not include this file.
26 */
27
28PJ_BEGIN_DECL
29
30/**
Benny Prijono224b4e22008-06-19 14:10:28 +000031 * Media transport state.
32 */
33typedef enum pjsua_med_tp_st
34{
35 /** Not initialized */
36 PJSUA_MED_TP_IDLE,
37
38 /** Initialized (media_create() has been called) */
39 PJSUA_MED_TP_INIT,
40
41 /** Running (media_start() has been called) */
Nanang Izzuddinb6c239c2011-05-10 05:42:28 +000042 PJSUA_MED_TP_RUNNING,
43
44 /** Disabled (transport is initialized, but media is being disabled) */
45 PJSUA_MED_TP_DISABLED
Benny Prijono224b4e22008-06-19 14:10:28 +000046
47} pjsua_med_tp_st;
48
Benny Prijono0bc99a92011-03-17 04:34:43 +000049/** Forward decl of pjsua call */
50typedef struct pjsua_call pjsua_call;
51
Nanang Izzuddin62053a62011-07-12 11:08:32 +000052
Benny Prijono0bc99a92011-03-17 04:34:43 +000053/**
54 * Call's media stream.
55 */
56typedef struct pjsua_call_media
57{
58 pjsua_call *call; /**< Parent call. */
59 pjmedia_type type; /**< Media type. */
60 unsigned idx; /**< This media index in parent call. */
61 pjsua_call_media_status state; /**< Media state. */
62 pjmedia_dir dir; /**< Media direction. */
63
64 /** The stream */
Benny Prijono9b61ff52011-03-18 09:55:48 +000065 struct {
Benny Prijono0bc99a92011-03-17 04:34:43 +000066 /** Audio stream */
67 struct {
Nanang Izzuddinbf26db12011-03-18 07:54:50 +000068 pjmedia_stream *stream; /**< The audio stream. */
Benny Prijono0bc99a92011-03-17 04:34:43 +000069 int conf_slot; /**< Slot # in conference bridge. */
70 } a;
71
72 /** Video stream */
73 struct {
Nanang Izzuddinbf26db12011-03-18 07:54:50 +000074 pjmedia_vid_stream *stream; /**< The video stream. */
Nanang Izzuddin62053a62011-07-12 11:08:32 +000075 pjsua_vid_win_id cap_win_id;/**< The video capture window */
76 pjsua_vid_win_id rdr_win_id;/**< The video render window */
Nanang Izzuddinb4d4dad2011-07-13 08:51:10 +000077 pjmedia_vid_dev_index cap_dev; /**< The video capture device */
78 pjmedia_vid_dev_index rdr_dev; /**< The video-in render device */
Benny Prijono0bc99a92011-03-17 04:34:43 +000079 } v;
80
81 } strm;
82
83 pj_uint32_t ssrc; /**< RTP SSRC */
84 pj_uint32_t rtp_tx_ts; /**< Initial RTP timestamp for sender. */
85 pj_uint16_t rtp_tx_seq;/**< Initial RTP sequence for sender. */
86 pj_uint8_t rtp_tx_seq_ts_set;
87 /**< Bitmask flags if initial RTP sequence
88 and/or timestamp for sender are set.
89 bit 0/LSB : sequence flag
90 bit 1 : timestamp flag */
91
92 pjmedia_transport *tp; /**< Current media transport (can be 0) */
93 pj_status_t tp_ready; /**< Media transport status. */
94 pjmedia_transport *tp_orig; /**< Original media transport */
95 pj_bool_t tp_auto_del; /**< May delete media transport */
96 pjsua_med_tp_st tp_st; /**< Media transport state */
97 pj_sockaddr rtp_addr; /**< Current RTP source address
98 (used to update ICE default
99 address) */
100 pjmedia_srtp_use rem_srtp_use; /**< Remote's SRTP usage policy. */
Benny Prijonoee0ba182011-07-15 06:18:29 +0000101
102 pjmedia_event_subscription esub;/**< To subscribe to media events. */
Benny Prijono0bc99a92011-03-17 04:34:43 +0000103} pjsua_call_media;
104
105/**
106 * Maximum number of SDP "m=" lines to be supported.
107 */
108#define PJSUA_MAX_CALL_MEDIA PJMEDIA_MAX_SDP_MEDIA
109
Benny Prijono224b4e22008-06-19 14:10:28 +0000110/**
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000111 * Structure to be attached to invite dialog.
112 * Given a dialog "dlg", application can retrieve this structure
113 * by accessing dlg->mod_data[pjsua.mod.id].
114 */
Benny Prijono0bc99a92011-03-17 04:34:43 +0000115struct pjsua_call
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000116{
117 unsigned index; /**< Index in pjsua array. */
118 pjsip_inv_session *inv; /**< The invite session. */
119 void *user_data; /**< User/application data. */
120 pjsip_status_code last_code; /**< Last status code seen. */
121 pj_str_t last_text; /**< Last status text seen. */
122 pj_time_val start_time;/**< First INVITE sent/received. */
123 pj_time_val res_time; /**< First response sent/received. */
124 pj_time_val conn_time; /**< Connected/confirmed time. */
125 pj_time_val dis_time; /**< Disconnect time. */
126 pjsua_acc_id acc_id; /**< Account index being used. */
Benny Prijonodb844a42008-02-02 17:07:18 +0000127 int secure_level;/**< Signaling security level. */
Benny Prijonodd63b992010-10-01 02:03:42 +0000128 pjsua_call_hold_type call_hold_type; /**< How to do call hold. */
Nanang Izzuddin99d69522008-08-04 15:01:38 +0000129 pj_bool_t local_hold;/**< Flag for call-hold by local. */
Benny Prijono0bc99a92011-03-17 04:34:43 +0000130
131 unsigned med_cnt; /**< Number of media in SDP. */
132 pjsua_call_media media[PJSUA_MAX_CALL_MEDIA]; /**< Array of media */
Nanang Izzuddinbf26db12011-03-18 07:54:50 +0000133 int audio_idx; /**< First active audio media. */
Benny Prijono0bc99a92011-03-17 04:34:43 +0000134
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000135 pjsip_evsub *xfer_sub; /**< Xfer server subscription, if this
136 call was triggered by xfer. */
Benny Prijono91a6a172007-10-31 08:59:29 +0000137 pj_stun_nat_type rem_nat_type; /**< NAT type of remote endpoint. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000138
139 char last_text_buf_[128]; /**< Buffer for last_text. */
140
Nanang Izzuddin93bacd02010-06-15 09:56:39 +0000141 struct {
142 pj_timer_entry reinv_timer;/**< Reinvite retry timer. */
Benny Prijono1e601552010-10-20 05:31:08 +0000143 pj_uint32_t sdp_ver; /**< SDP version of the bad answer */
144 int retry_cnt; /**< Retry count. */
Nanang Izzuddinec919002010-11-25 09:27:06 +0000145 pj_bool_t pending; /**< Pending until CONFIRMED state */
Nanang Izzuddin93bacd02010-06-15 09:56:39 +0000146 } lock_codec; /**< Data for codec locking when answer
147 contains multiple codecs. */
148
Benny Prijono0bc99a92011-03-17 04:34:43 +0000149};
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000150
151
152/**
153 * Server presence subscription list head.
154 */
Benny Prijono63fba012008-07-17 14:19:10 +0000155struct pjsua_srv_pres
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000156{
157 PJ_DECL_LIST_MEMBER(struct pjsua_srv_pres);
Benny Prijono63fba012008-07-17 14:19:10 +0000158 pjsip_evsub *sub; /**< The evsub. */
159 char *remote; /**< Remote URI. */
160 int acc_id; /**< Account ID. */
161 pjsip_dialog *dlg; /**< Dialog. */
162 int expires; /**< "expires" value in the request. */
163};
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000164
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000165/**
166 * Account
167 */
168typedef struct pjsua_acc
169{
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000170 pj_pool_t *pool; /**< Pool for this account. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000171 pjsua_acc_config cfg; /**< Account configuration. */
172 pj_bool_t valid; /**< Is this account valid? */
173
174 int index; /**< Index in accounts array. */
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000175 pj_str_t display; /**< Display name, if any. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000176 pj_str_t user_part; /**< User part of local URI. */
Nanang Izzuddin5af37ff2009-08-05 18:41:23 +0000177 pj_str_t contact; /**< Our Contact header. */
Benny Prijonob54719f2010-11-16 03:07:46 +0000178 pj_str_t reg_contact; /**< Contact header for REGISTER.
179 It may be different than acc
180 contact if outbound is used */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000181
Benny Prijonob4a17c92006-07-10 14:40:21 +0000182 pj_str_t srv_domain; /**< Host part of reg server. */
183 int srv_port; /**< Port number of reg server. */
184
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000185 pjsip_regc *regc; /**< Client registration session. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000186 pj_status_t reg_last_err; /**< Last registration error. */
187 int reg_last_code; /**< Last status last register. */
188
Nanang Izzuddin36dd5b62010-03-30 11:13:59 +0000189 struct {
190 pj_bool_t active; /**< Flag of reregister status. */
191 pj_timer_entry timer; /**< Timer for reregistration. */
192 void *reg_tp; /**< Transport for registration. */
193 unsigned attempt_cnt; /**< Attempt counter. */
194 } auto_rereg; /**< Reregister/reconnect data. */
195
Benny Prijonobddef2c2007-10-31 13:28:08 +0000196 pj_timer_entry ka_timer; /**< Keep-alive timer for UDP. */
197 pjsip_transport *ka_transport; /**< Transport for keep-alive. */
198 pj_sockaddr ka_target; /**< Destination address for K-A */
199 unsigned ka_target_len; /**< Length of ka_target. */
200
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000201 pjsip_route_hdr route_set; /**< Complete route set inc. outbnd.*/
Nanang Izzuddinc3ea16a2010-04-20 14:36:38 +0000202 pj_uint32_t global_route_crc; /** CRC of global route setting. */
203 pj_uint32_t local_route_crc; /** CRC of account route setting.*/
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000204
Benny Prijonob54719f2010-11-16 03:07:46 +0000205 unsigned rfc5626_status;/**< SIP outbound status:
206 0: not used
207 1: requested
208 2: acknowledged by servers */
209 pj_str_t rfc5626_instprm;/**< SIP outbound instance param. */
210 pj_str_t rfc5626_regprm;/**< SIP outbound reg param. */
211
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000212 unsigned cred_cnt; /**< Number of credentials. */
213 pjsip_cred_info cred[PJSUA_ACC_MAX_PROXIES]; /**< Complete creds. */
214
215 pj_bool_t online_status; /**< Our online status. */
Benny Prijono4461c7d2007-08-25 13:36:15 +0000216 pjrpid_element rpid; /**< RPID element information. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000217 pjsua_srv_pres pres_srv_list; /**< Server subscription list. */
Benny Prijono3a5e1ab2006-08-15 20:26:34 +0000218 pjsip_publishc *publish_sess; /**< Client publication session. */
219 pj_bool_t publish_state; /**< Last published online status */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000220
Benny Prijono4dd961b2009-10-26 11:21:37 +0000221 pjsip_evsub *mwi_sub; /**< MWI client subscription */
222 pjsip_dialog *mwi_dlg; /**< Dialog for MWI sub. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000223} pjsua_acc;
224
225
226/**
227 *Transport.
228 */
Benny Prijono62c5c5b2007-01-13 23:22:40 +0000229typedef struct pjsua_transport_data
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000230{
Benny Prijonoe93e2872006-06-28 16:46:49 +0000231 int index;
232 pjsip_transport_type_e type;
233 pjsip_host_port local_name;
234
235 union {
236 pjsip_transport *tp;
237 pjsip_tpfactory *factory;
238 void *ptr;
239 } data;
240
Benny Prijono62c5c5b2007-01-13 23:22:40 +0000241} pjsua_transport_data;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000242
243
Benny Prijono63fba012008-07-17 14:19:10 +0000244/** Maximum length of subscription termination reason. */
245#define PJSUA_BUDDY_SUB_TERM_REASON_LEN 32
246
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000247/**
248 * Buddy data.
249 */
250typedef struct pjsua_buddy
251{
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000252 pj_pool_t *pool; /**< Pool for this buddy. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000253 unsigned index; /**< Buddy index. */
Benny Prijono705e7842008-07-21 18:12:51 +0000254 void *user_data; /**< Application data. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000255 pj_str_t uri; /**< Buddy URI. */
256 pj_str_t contact; /**< Contact learned from subscrp. */
257 pj_str_t name; /**< Buddy name. */
258 pj_str_t display; /**< Buddy display name. */
259 pj_str_t host; /**< Buddy host. */
260 unsigned port; /**< Buddy port. */
261 pj_bool_t monitor; /**< Should we monitor? */
Benny Prijonof9c40c32007-06-28 07:20:26 +0000262 pjsip_dialog *dlg; /**< The underlying dialog. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000263 pjsip_evsub *sub; /**< Buddy presence subscription */
Benny Prijono73bb7232009-10-20 13:56:26 +0000264 unsigned term_code; /**< Subscription termination code */
Benny Prijono63fba012008-07-17 14:19:10 +0000265 pj_str_t term_reason;/**< Subscription termination reason */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000266 pjsip_pres_status status; /**< Buddy presence status. */
Benny Prijono73bb7232009-10-20 13:56:26 +0000267 pj_timer_entry timer; /**< Resubscription timer */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000268} pjsua_buddy;
269
270
271/**
272 * File player/recorder data.
273 */
274typedef struct pjsua_file_data
275{
Benny Prijonoa66c3312007-01-21 23:12:40 +0000276 pj_bool_t type; /* 0=player, 1=playlist */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000277 pjmedia_port *port;
Benny Prijonod5696da2007-07-17 16:25:45 +0000278 pj_pool_t *pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000279 unsigned slot;
280} pjsua_file_data;
281
282
283/**
284 * Additional parameters for conference bridge.
285 */
286typedef struct pjsua_conf_setting
287{
288 unsigned channel_count;
289 unsigned samples_per_frame;
290 unsigned bits_per_sample;
291} pjsua_conf_setting;
292
Benny Prijonobb995fd2009-08-12 11:03:23 +0000293typedef struct pjsua_stun_resolve
294{
295 PJ_DECL_LIST_MEMBER(struct pjsua_stun_resolve);
296
297 pj_pool_t *pool; /**< Pool */
298 unsigned count; /**< # of entries */
299 pj_str_t *srv; /**< Array of entries */
300 unsigned idx; /**< Current index */
301 void *token; /**< App token */
302 pj_stun_resolve_cb cb; /**< App callback */
303 pj_bool_t blocking; /**< Blocking? */
304 pj_status_t status; /**< Session status */
305 pj_sockaddr addr; /**< Result */
306 pj_stun_sock *stun_sock; /**< Testing STUN sock */
307} pjsua_stun_resolve;
308
Benny Prijono9f468d12011-07-07 07:46:33 +0000309typedef enum pjsua_vid_win_type
310{
311 PJSUA_WND_TYPE_NONE,
312 PJSUA_WND_TYPE_PREVIEW,
313 PJSUA_WND_TYPE_STREAM
314} pjsua_vid_win_type;
315
316typedef struct pjsua_vid_win
317{
318 pjsua_vid_win_type type; /**< Type. */
319 pj_pool_t *pool; /**< Own pool. */
Nanang Izzuddin62053a62011-07-12 11:08:32 +0000320 unsigned ref_cnt; /**< Reference counter. */
Benny Prijono9f468d12011-07-07 07:46:33 +0000321 pjmedia_vid_port *vp_cap; /**< Capture vidport. */
322 pjmedia_vid_port *vp_rend; /**< Renderer vidport */
Nanang Izzuddin62053a62011-07-12 11:08:32 +0000323 pjmedia_port *tee; /**< Video tee */
Benny Prijono9f468d12011-07-07 07:46:33 +0000324 pjmedia_vid_dev_index preview_cap_id;/* Capture dev id */
325} pjsua_vid_win;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000326
327/**
328 * Global pjsua application data.
329 */
330struct pjsua_data
331{
332
333 /* Control: */
334 pj_caching_pool cp; /**< Global pool factory. */
335 pj_pool_t *pool; /**< pjsua's private pool. */
336 pj_mutex_t *mutex; /**< Mutex protection for this data */
Benny Prijono0bc99a92011-03-17 04:34:43 +0000337 pjsua_state state; /**< Library state. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000338
339 /* Logging: */
340 pjsua_logging_config log_cfg; /**< Current logging config. */
341 pj_oshandle_t log_file; /**<Output log file handle */
342
343 /* SIP: */
344 pjsip_endpoint *endpt; /**< Global endpoint. */
345 pjsip_module mod; /**< pjsua's PJSIP module. */
Benny Prijono62c5c5b2007-01-13 23:22:40 +0000346 pjsua_transport_data tpdata[8]; /**< Array of transports. */
Benny Prijono21407322010-03-10 13:33:25 +0000347 pjsip_tp_state_callback old_tp_cb; /**< Old transport callback. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000348
349 /* Threading: */
350 pj_bool_t thread_quit_flag; /**< Thread quit flag. */
351 pj_thread_t *thread[4]; /**< Array of threads. */
352
Benny Prijonoc97608e2007-03-23 16:34:20 +0000353 /* STUN and resolver */
354 pj_stun_config stun_cfg; /**< Global STUN settings. */
355 pj_sockaddr stun_srv; /**< Resolved STUN server address */
356 pj_status_t stun_status; /**< STUN server status. */
Benny Prijonobb995fd2009-08-12 11:03:23 +0000357 pjsua_stun_resolve stun_res; /**< List of pending STUN resolution*/
Benny Prijonoc97608e2007-03-23 16:34:20 +0000358 pj_dns_resolver *resolver; /**< DNS resolver. */
359
Benny Prijono6ba8c542007-10-16 01:34:14 +0000360 /* Detected NAT type */
361 pj_stun_nat_type nat_type; /**< NAT type. */
362 pj_status_t nat_status; /**< Detection status. */
363 pj_bool_t nat_in_progress; /**< Detection in progress */
364
Benny Prijono29c8ca32010-06-22 06:02:13 +0000365 /* List of outbound proxies: */
366 pjsip_route_hdr outbound_proxy;
367
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000368 /* Account: */
369 unsigned acc_cnt; /**< Number of accounts. */
370 pjsua_acc_id default_acc; /**< Default account ID */
371 pjsua_acc acc[PJSUA_MAX_ACC]; /**< Account array. */
Benny Prijono093d3022006-09-24 00:07:11 +0000372 pjsua_acc_id acc_ids[PJSUA_MAX_ACC]; /**< Acc sorted by prio*/
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000373
374 /* Calls: */
375 pjsua_config ua_cfg; /**< UA config. */
376 unsigned call_cnt; /**< Call counter. */
377 pjsua_call calls[PJSUA_MAX_CALLS];/**< Calls array. */
Benny Prijono5773cd62008-01-19 13:01:42 +0000378 pjsua_call_id next_call_id; /**< Next call id to use*/
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000379
380 /* Buddy; */
381 unsigned buddy_cnt; /**< Buddy count. */
382 pjsua_buddy buddy[PJSUA_MAX_BUDDIES]; /**< Buddy array. */
383
Benny Prijono7a5f5102007-05-29 00:33:09 +0000384 /* Presence: */
385 pj_timer_entry pres_timer;/**< Presence refresh timer. */
386
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000387 /* Media: */
388 pjsua_media_config media_cfg; /**< Media config. */
389 pjmedia_endpt *med_endpt; /**< Media endpoint. */
390 pjsua_conf_setting mconf_cfg; /**< Additionan conf. bridge. param */
391 pjmedia_conf *mconf; /**< Conference bridge. */
Benny Prijonof798e502009-03-09 13:08:16 +0000392 pj_bool_t is_mswitch;/**< Are we using audio switchboard
393 (a.k.a APS-Direct) */
394
395 /* Sound device */
396 pjmedia_aud_dev_index cap_dev; /**< Capture device ID. */
397 pjmedia_aud_dev_index play_dev; /**< Playback device ID. */
398 pj_uint32_t aud_svmask;/**< Which settings to save */
399 pjmedia_aud_param aud_param; /**< User settings to sound dev */
400 pj_bool_t aud_open_cnt;/**< How many # device is opened */
Benny Prijonoe909eac2006-07-27 22:04:56 +0000401 pj_bool_t no_snd; /**< No sound (app will manage it) */
Nanang Izzuddin68559c32008-06-13 17:01:46 +0000402 pj_pool_t *snd_pool; /**< Sound's private pool. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000403 pjmedia_snd_port *snd_port; /**< Sound port. */
Nanang Izzuddin68559c32008-06-13 17:01:46 +0000404 pj_timer_entry snd_idle_timer;/**< Sound device idle timer. */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000405 pjmedia_master_port *null_snd; /**< Master port for null sound. */
406 pjmedia_port *null_port; /**< Null port. */
Benny Prijono2d647722011-07-13 03:05:22 +0000407 pj_bool_t snd_is_on; /**< Media flow is currently active */
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000408
Nanang Izzuddin50fae732011-03-22 09:49:23 +0000409 /* Video device */
410 pjmedia_vid_dev_index vcap_dev; /**< Capture device ID. */
411 pjmedia_vid_dev_index vrdr_dev; /**< Playback device ID. */
412
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000413 /* File players: */
414 unsigned player_cnt;/**< Number of file players. */
Benny Prijonocba59d92007-02-16 09:22:56 +0000415 pjsua_file_data player[PJSUA_MAX_PLAYERS];/**< Array of players.*/
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000416
417 /* File recorders: */
418 unsigned rec_cnt; /**< Number of file recorders. */
Benny Prijonocba59d92007-02-16 09:22:56 +0000419 pjsua_file_data recorder[PJSUA_MAX_RECORDERS];/**< Array of recs.*/
Benny Prijono9f468d12011-07-07 07:46:33 +0000420
421 /* Video windows */
422#if PJSUA_HAS_VIDEO
423 pjsua_vid_win win[PJSUA_MAX_VID_WINS]; /**< Array of windows */
424#endif
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000425};
426
427
428extern struct pjsua_data pjsua_var;
429
Benny Prijono44e88ea2007-10-30 15:42:35 +0000430/**
431 * Get the instance of pjsua
432 */
433PJ_DECL(struct pjsua_data*) pjsua_get_var(void);
434
435
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000436
437/**
438 * IM callback data.
439 */
440typedef struct pjsua_im_data
441{
442 pjsua_acc_id acc_id;
443 pjsua_call_id call_id;
444 pj_str_t to;
445 pj_str_t body;
446 void *user_data;
447} pjsua_im_data;
448
449
450/**
451 * Duplicate IM data.
452 */
453PJ_INLINE(pjsua_im_data*) pjsua_im_data_dup(pj_pool_t *pool,
454 const pjsua_im_data *src)
455{
456 pjsua_im_data *dst;
457
Benny Prijono07113c92006-11-21 08:38:00 +0000458 dst = (pjsua_im_data*) pj_pool_alloc(pool, sizeof(*dst));
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000459 dst->acc_id = src->acc_id;
460 dst->call_id = src->call_id;
461 pj_strdup_with_null(pool, &dst->to, &src->to);
462 dst->user_data = src->user_data;
463 pj_strdup_with_null(pool, &dst->body, &src->body);
464
465 return dst;
466}
467
468
Benny Prijono148c9dd2006-09-19 13:37:53 +0000469#if 1
470#define PJSUA_LOCK() pj_mutex_lock(pjsua_var.mutex)
471#define PJSUA_TRY_LOCK() pj_mutex_trylock(pjsua_var.mutex)
472#define PJSUA_UNLOCK() pj_mutex_unlock(pjsua_var.mutex)
Benny Prijono3a5e1ab2006-08-15 20:26:34 +0000473#else
474#define PJSUA_LOCK()
Benny Prijono148c9dd2006-09-19 13:37:53 +0000475#define PJSUA_TRY_LOCK() PJ_SUCCESS
Benny Prijono3a5e1ab2006-08-15 20:26:34 +0000476#define PJSUA_UNLOCK()
477#endif
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000478
Benny Prijono0bc99a92011-03-17 04:34:43 +0000479/* Core */
480void pjsua_set_state(pjsua_state new_state);
481
Benny Prijonobb995fd2009-08-12 11:03:23 +0000482/******
483 * STUN resolution
484 */
485/* Resolve the STUN server */
486pj_status_t resolve_stun_server(pj_bool_t wait);
487
Benny Prijono91d06b62008-09-20 12:16:56 +0000488/**
489 * Normalize route URI (check for ";lr" and append one if it doesn't
490 * exist and pjsua_config.force_lr is set.
491 */
492pj_status_t normalize_route_uri(pj_pool_t *pool, pj_str_t *uri);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000493
Benny Prijonoc97608e2007-03-23 16:34:20 +0000494/**
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000495 * Handle incoming invite request.
496 */
497pj_bool_t pjsua_call_on_incoming(pjsip_rx_data *rdata);
498
Benny Prijonoc97608e2007-03-23 16:34:20 +0000499/*
500 * Media channel.
501 */
502pj_status_t pjsua_media_channel_init(pjsua_call_id call_id,
Benny Prijonod8179652008-01-23 20:39:07 +0000503 pjsip_role_e role,
Benny Prijono25b2ea12008-01-24 19:20:54 +0000504 int security_level,
Benny Prijono224b4e22008-06-19 14:10:28 +0000505 pj_pool_t *tmp_pool,
506 const pjmedia_sdp_session *rem_sdp,
Benny Prijono25b2ea12008-01-24 19:20:54 +0000507 int *sip_err_code);
Benny Prijonoc97608e2007-03-23 16:34:20 +0000508pj_status_t pjsua_media_channel_create_sdp(pjsua_call_id call_id,
509 pj_pool_t *pool,
Benny Prijonod8179652008-01-23 20:39:07 +0000510 const pjmedia_sdp_session *rem_sdp,
Benny Prijono25b2ea12008-01-24 19:20:54 +0000511 pjmedia_sdp_session **p_sdp,
512 int *sip_err_code);
Benny Prijonoc97608e2007-03-23 16:34:20 +0000513pj_status_t pjsua_media_channel_update(pjsua_call_id call_id,
Benny Prijono224b4e22008-06-19 14:10:28 +0000514 const pjmedia_sdp_session *local_sdp,
Benny Prijonodbce2cf2007-03-28 16:24:00 +0000515 const pjmedia_sdp_session *remote_sdp);
Benny Prijonoc97608e2007-03-23 16:34:20 +0000516pj_status_t pjsua_media_channel_deinit(pjsua_call_id call_id);
517
Benny Prijonoee0ba182011-07-15 06:18:29 +0000518pj_status_t pjsua_call_media_init(pjsua_call_media *call_med,
519 pjmedia_type type,
520 const pjsua_transport_config *tcfg,
521 int security_level,
522 int *sip_err_code);
523pj_status_t video_channel_update(pjsua_call_media *call_med,
524 pj_pool_t *tmp_pool,
525 const pjmedia_sdp_session *local_sdp,
526 const pjmedia_sdp_session *remote_sdp);
527
Benny Prijonoc97608e2007-03-23 16:34:20 +0000528
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000529/**
530 * Init presence.
531 */
532pj_status_t pjsua_pres_init();
533
534/*
535 * Start presence subsystem.
536 */
537pj_status_t pjsua_pres_start(void);
538
539/**
540 * Refresh presence subscriptions
541 */
542void pjsua_pres_refresh(void);
543
544/*
Benny Prijono4461c7d2007-08-25 13:36:15 +0000545 * Update server subscription (e.g. when our online status has changed)
546 */
547void pjsua_pres_update_acc(int acc_id, pj_bool_t force);
548
549/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000550 * Shutdown presence.
551 */
552void pjsua_pres_shutdown(void);
553
554/**
Benny Prijono3a5e1ab2006-08-15 20:26:34 +0000555 * Init presence for aoocunt.
556 */
557pj_status_t pjsua_pres_init_acc(int acc_id);
558
559/**
Benny Prijono8b6834f2007-02-24 13:29:22 +0000560 * Send PUBLISH
561 */
562pj_status_t pjsua_pres_init_publish_acc(int acc_id);
563
564/**
Benny Prijono166d5022010-02-10 14:24:48 +0000565 * Send un-PUBLISH
566 */
567void pjsua_pres_unpublish(pjsua_acc *acc);
568
569/**
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000570 * Terminate server subscription for the account
571 */
572void pjsua_pres_delete_acc(int acc_id);
573
574/**
575 * Init IM module handler to handle incoming MESSAGE outside dialog.
576 */
577pj_status_t pjsua_im_init(void);
578
579/**
Benny Prijono4dd961b2009-10-26 11:21:37 +0000580 * Start MWI subscription
581 */
582void pjsua_start_mwi(pjsua_acc *acc);
583
584/**
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000585 * Init call subsystem.
586 */
587pj_status_t pjsua_call_subsys_init(const pjsua_config *cfg);
588
589/**
590 * Start call subsystem.
591 */
592pj_status_t pjsua_call_subsys_start(void);
593
594/**
595 * Init media subsystems.
596 */
597pj_status_t pjsua_media_subsys_init(const pjsua_media_config *cfg);
598
599/**
600 * Start pjsua media subsystem.
601 */
602pj_status_t pjsua_media_subsys_start(void);
603
604/**
605 * Destroy pjsua media subsystem.
606 */
607pj_status_t pjsua_media_subsys_destroy(void);
608
609/**
610 * Private: check if we can accept the message.
611 * If not, then p_accept header will be filled with a valid
612 * Accept header.
613 */
614pj_bool_t pjsua_im_accept_pager(pjsip_rx_data *rdata,
615 pjsip_accept_hdr **p_accept_hdr);
616
617/**
618 * Private: process pager message.
619 * This may trigger pjsua_ui_on_pager() or pjsua_ui_on_typing().
620 */
621void pjsua_im_process_pager(int call_id, const pj_str_t *from,
622 const pj_str_t *to, pjsip_rx_data *rdata);
623
624
625/**
626 * Create Accept header for MESSAGE.
627 */
628pjsip_accept_hdr* pjsua_im_create_accept(pj_pool_t *pool);
629
630/*
631 * Add additional headers etc in msg_data specified by application
632 * when sending requests.
633 */
634void pjsua_process_msg_data(pjsip_tx_data *tdata,
635 const pjsua_msg_data *msg_data);
636
637
638/*
639 * Add route_set to outgoing requests
640 */
641void pjsua_set_msg_route_set( pjsip_tx_data *tdata,
642 const pjsip_route_hdr *route_set );
643
644
645/*
646 * Simple version of MIME type parsing (it doesn't support parameters)
647 */
648void pjsua_parse_media_type( pj_pool_t *pool,
649 const pj_str_t *mime,
650 pjsip_media_type *media_type);
651
652
Benny Prijono62c5c5b2007-01-13 23:22:40 +0000653/*
654 * Internal function to init transport selector from transport id.
655 */
656void pjsua_init_tpselector(pjsua_transport_id tp_id,
657 pjsip_tpselector *sel);
658
Benny Prijono3c5e28b2008-09-24 10:10:15 +0000659pjsip_dialog* on_dlg_forked(pjsip_dialog *first_set, pjsip_rx_data *res);
Benny Prijono627cbb42007-09-25 20:48:49 +0000660pj_status_t acquire_call(const char *title,
661 pjsua_call_id call_id,
662 pjsua_call **p_call,
663 pjsip_dialog **p_dlg);
664const char *good_number(char *buf, pj_int32_t val);
665void print_call(const char *title,
666 int call_id,
667 char *buf, pj_size_t size);
668
Benny Prijono9f468d12011-07-07 07:46:33 +0000669/*
670 * Video
671 */
672pj_status_t pjsua_vid_subsys_init(void);
673pj_status_t pjsua_vid_subsys_start(void);
674pj_status_t pjsua_vid_subsys_destroy(void);
675
676PJ_INLINE(void) pjsua_vid_win_reset(pjsua_vid_win_id wid)
677{
678#if PJSUA_HAS_VIDEO
679 pjsua_vid_win *w = &pjsua_var.win[wid];
680 pj_pool_t *pool = w->pool;
681
682 pj_bzero(w, sizeof(*w));
683 if (pool) pj_pool_reset(pool);
Nanang Izzuddin62053a62011-07-12 11:08:32 +0000684 w->ref_cnt = 0;
Benny Prijono9f468d12011-07-07 07:46:33 +0000685 w->pool = pool;
686 w->preview_cap_id = PJMEDIA_VID_INVALID_DEV;
687#endif
688}
689
Benny Prijono62c5c5b2007-01-13 23:22:40 +0000690
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000691PJ_END_DECL
692
693#endif /* __PJSUA_INTERNAL_H__ */
694