blob: dcf5020958ed35fc755d0d0793cdb801e6d5bfc9 [file] [log] [blame]
Alexandre Lision8af73cb2013-12-10 14:11:20 -05001/* $Id$ */
2/*
3 * Copyright (C) 2008-2011 Teluu Inc. (http://www.teluu.com)
4 * Copyright (C) 2003-2008 Benny Prijono <benny@prijono.org>
5 *
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/** Forward decl of pjsua call */
31typedef struct pjsua_call pjsua_call;
32
33/** Forward decl of pjsua call media */
34typedef struct pjsua_call_media pjsua_call_media;
35
36
37/**
38 * Call's media stream.
39 */
40struct pjsua_call_media
41{
42 pjsua_call *call; /**< Parent call. */
43 pjmedia_type type; /**< Media type. */
44 unsigned idx; /**< This media index in parent call. */
45 pjsua_call_media_status state; /**< Media state. */
46 pjsua_call_media_status prev_state;/**< Previous media state. */
47 pjmedia_dir dir; /**< Media direction. */
48
49 /** The stream */
50 struct {
51 /** Audio stream */
52 struct {
53 pjmedia_stream *stream; /**< The audio stream. */
54 int conf_slot; /**< Slot # in conference bridge. */
55 } a;
56
57 /** Video stream */
58 struct {
59 pjmedia_vid_stream *stream; /**< The video stream. */
60 pjsua_vid_win_id cap_win_id;/**< The video capture window */
61 pjsua_vid_win_id rdr_win_id;/**< The video render window */
62 pjmedia_vid_dev_index cap_dev; /**< The video capture device */
63 pjmedia_vid_dev_index rdr_dev; /**< The video-in render device */
64 } v;
65
66 } strm;
67
68 pj_uint32_t ssrc; /**< RTP SSRC */
69 pj_uint32_t rtp_tx_ts; /**< Initial RTP timestamp for sender. */
70 pj_uint16_t rtp_tx_seq;/**< Initial RTP sequence for sender. */
71 pj_uint8_t rtp_tx_seq_ts_set;
72 /**< Bitmask flags if initial RTP sequence
73 and/or timestamp for sender are set.
74 bit 0/LSB : sequence flag
75 bit 1 : timestamp flag */
76
77 pjmedia_transport *tp; /**< Current media transport (can be 0) */
78 pj_status_t tp_ready; /**< Media transport status. */
79 pj_status_t tp_result; /**< Media transport creation result. */
80 pjmedia_transport *tp_orig; /**< Original media transport */
81 pj_bool_t tp_auto_del; /**< May delete media transport */
82 pjsua_med_tp_st tp_st; /**< Media transport state */
83 pj_bool_t use_custom_med_tp;/**< Use custom media transport? */
84 pj_sockaddr rtp_addr; /**< Current RTP source address
85 (used to update ICE default
86 address) */
87 pjmedia_srtp_use rem_srtp_use; /**< Remote's SRTP usage policy. */
88 pj_timestamp last_req_keyframe;/**< Last TX keyframe request. */
89
90 pjsua_med_tp_state_cb med_init_cb;/**< Media transport
91 initialization callback. */
92
93 /** Media transport creation callback. */
94 pj_status_t (*med_create_cb)(pjsua_call_media *call_med,
95 pj_status_t status, int security_level,
96 int *sip_err_code);
97};
98
99/**
100 * Maximum number of SDP "m=" lines to be supported.
101 */
102#define PJSUA_MAX_CALL_MEDIA PJMEDIA_MAX_SDP_MEDIA
103
104/* Call answer's list. */
105typedef struct call_answer
106{
107 PJ_DECL_LIST_MEMBER(struct call_answer);
108 pjsua_msg_data *msg_data; /**< Answer's headers list. */
109 pj_str_t *reason; /**< Answer's reason phrase. */
110 unsigned code; /**< Answer's status code. */
111 pjsua_call_setting *opt; /**< Answer's call setting. */
112} call_answer;
113
114
115/**
116 * Structure to be attached to invite dialog.
117 * Given a dialog "dlg", application can retrieve this structure
118 * by accessing dlg->mod_data[pjsua.mod.id].
119 */
120struct pjsua_call
121{
122 unsigned index; /**< Index in pjsua array. */
123 pjsua_call_setting opt; /**< Call setting. */
124 pj_bool_t opt_inited;/**< Initial call setting has been set,
125 to avoid different opt in answer. */
126 pjsip_inv_session *inv; /**< The invite session. */
127 void *user_data; /**< User/application data. */
128 pjsip_status_code last_code; /**< Last status code seen. */
129 pj_str_t last_text; /**< Last status text seen. */
130 pj_time_val start_time;/**< First INVITE sent/received. */
131 pj_time_val res_time; /**< First response sent/received. */
132 pj_time_val conn_time; /**< Connected/confirmed time. */
133 pj_time_val dis_time; /**< Disconnect time. */
134 pjsua_acc_id acc_id; /**< Account index being used. */
135 int secure_level;/**< Signaling security level. */
136 pjsua_call_hold_type call_hold_type; /**< How to do call hold. */
137 pj_bool_t local_hold;/**< Flag for call-hold by local. */
138 void *hold_msg; /**< Outgoing hold tx_data. */
139
140 unsigned med_cnt; /**< Number of media in SDP. */
141 pjsua_call_media media[PJSUA_MAX_CALL_MEDIA]; /**< Array of media */
142 unsigned med_prov_cnt;/**< Number of provisional media. */
143 pjsua_call_media media_prov[PJSUA_MAX_CALL_MEDIA];
144 /**< Array of provisional media. */
145
146 int audio_idx; /**< First active audio media. */
147 pj_mutex_t *med_ch_mutex;/**< Media channel callback's mutex. */
148 pjsua_med_tp_state_cb med_ch_cb;/**< Media channel callback. */
149 pjsua_med_tp_state_info med_ch_info;/**< Media channel info. */
150
151 pjsip_evsub *xfer_sub; /**< Xfer server subscription, if this
152 call was triggered by xfer. */
153 pj_stun_nat_type rem_nat_type; /**< NAT type of remote endpoint. */
154
155 char last_text_buf_[128]; /**< Buffer for last_text. */
156
157 struct {
158 int retry_cnt; /**< Retry count. */
159 } lock_codec; /**< Data for codec locking when answer
160 contains multiple codecs. */
161
162 struct {
163 pjsip_dialog *dlg; /**< Call dialog. */
164 pjmedia_sdp_session *rem_sdp;/**< Remote SDP. */
165 pj_pool_t *pool_prov;/**< Provisional pool. */
166 pj_bool_t med_ch_deinit;/**< Media channel de-init-ed? */
167 union {
168 struct {
169 pjsua_msg_data *msg_data;/**< Headers for outgoing INVITE. */
170 pj_bool_t hangup; /**< Call is hangup? */
171 } out_call;
172 struct {
173 call_answer answers;/**< A list of call answers. */
174 pjsip_dialog *replaced_dlg; /**< Replaced dialog. */
175 } inc_call;
176 } call_var;
177 } async_call; /**< Temporary storage for async
178 outgoing/incoming call. */
179
180 pj_bool_t rem_offerer; /**< Was remote SDP offerer? */
181 unsigned rem_aud_cnt; /**< No of active audio in last remote
182 offer. */
183 unsigned rem_vid_cnt; /**< No of active video in last remote
184 offer. */
185
186 pj_timer_entry reinv_timer; /**< Reinvite retry timer. */
187 pj_bool_t reinv_pending;/**< Pending until CONFIRMED state. */
188 pj_bool_t reinv_ice_sent;/**< Has reinvite for ICE upd sent? */
189};
190
191
192/**
193 * Server presence subscription list head.
194 */
195struct pjsua_srv_pres
196{
197 PJ_DECL_LIST_MEMBER(struct pjsua_srv_pres);
198 pjsip_evsub *sub; /**< The evsub. */
199 char *remote; /**< Remote URI. */
200 int acc_id; /**< Account ID. */
201 pjsip_dialog *dlg; /**< Dialog. */
202 int expires; /**< "expires" value in the request. */
203};
204
205/**
206 * Account
207 */
208typedef struct pjsua_acc
209{
210 pj_pool_t *pool; /**< Pool for this account. */
211 pjsua_acc_config cfg; /**< Account configuration. */
212 pj_bool_t valid; /**< Is this account valid? */
213
214 int index; /**< Index in accounts array. */
215 pj_str_t display; /**< Display name, if any. */
216 pj_str_t user_part; /**< User part of local URI. */
217 pj_bool_t is_sips; /**< Local URI uses "sips"? */
218 pj_str_t contact; /**< Our Contact header. */
219 pj_str_t reg_contact; /**< Contact header for REGISTER.
220 It may be different than acc
221 contact if outbound is used */
222 pjsip_host_port via_addr; /**< Address for Via header */
223 pjsip_transport *via_tp; /**< Transport associated with
224 the Via address */
225
226 pj_str_t srv_domain; /**< Host part of reg server. */
227 int srv_port; /**< Port number of reg server. */
228
229 pjsip_regc *regc; /**< Client registration session. */
230 pj_status_t reg_last_err; /**< Last registration error. */
231 int reg_last_code; /**< Last status last register. */
232
233 pj_str_t reg_mapped_addr;/**< Our addr as seen by reg srv.
234 Only if allow_sdp_nat_rewrite
235 is set */
236
237 struct {
238 pj_bool_t active; /**< Flag of reregister status. */
239 pj_timer_entry timer; /**< Timer for reregistration. */
240 void *reg_tp; /**< Transport for registration. */
241 unsigned attempt_cnt; /**< Attempt counter. */
242 } auto_rereg; /**< Reregister/reconnect data. */
243
244 pj_timer_entry ka_timer; /**< Keep-alive timer for UDP. */
245 pjsip_transport *ka_transport; /**< Transport for keep-alive. */
246 pj_sockaddr ka_target; /**< Destination address for K-A */
247 unsigned ka_target_len; /**< Length of ka_target. */
248
249 pjsip_route_hdr route_set; /**< Complete route set inc. outbnd.*/
250 pj_uint32_t global_route_crc; /** CRC of global route setting. */
251 pj_uint32_t local_route_crc; /** CRC of account route setting.*/
252
253 unsigned rfc5626_status;/**< SIP outbound status:
254 0: not used
255 1: requested
256 2: acknowledged by servers */
257 pj_str_t rfc5626_instprm;/**< SIP outbound instance param. */
258 pj_str_t rfc5626_regprm;/**< SIP outbound reg param. */
259
260 unsigned cred_cnt; /**< Number of credentials. */
261 pjsip_cred_info cred[PJSUA_ACC_MAX_PROXIES]; /**< Complete creds. */
262
263 pj_bool_t online_status; /**< Our online status. */
264 pjrpid_element rpid; /**< RPID element information. */
265 pjsua_srv_pres pres_srv_list; /**< Server subscription list. */
266 pjsip_publishc *publish_sess; /**< Client publication session. */
267 pj_bool_t publish_state; /**< Last published online status */
268
269 pjsip_evsub *mwi_sub; /**< MWI client subscription */
270 pjsip_dialog *mwi_dlg; /**< Dialog for MWI sub. */
271
272 pj_uint16_t next_rtp_port; /**< Next RTP port to be used. */
273} pjsua_acc;
274
275
276/**
277 *Transport.
278 */
279typedef struct pjsua_transport_data
280{
281 int index;
282 pjsip_transport_type_e type;
283 pjsip_host_port local_name;
284
285 union {
286 pjsip_transport *tp;
287 pjsip_tpfactory *factory;
288 void *ptr;
289 } data;
290
291} pjsua_transport_data;
292
293
294/** Maximum length of subscription termination reason. */
295#define PJSUA_BUDDY_SUB_TERM_REASON_LEN 32
296
297/**
298 * Buddy data.
299 */
300typedef struct pjsua_buddy
301{
302 pj_pool_t *pool; /**< Pool for this buddy. */
303 unsigned index; /**< Buddy index. */
304 void *user_data; /**< Application data. */
305 pj_str_t uri; /**< Buddy URI. */
306 pj_str_t contact; /**< Contact learned from subscrp. */
307 pj_str_t name; /**< Buddy name. */
308 pj_str_t display; /**< Buddy display name. */
309 pj_str_t host; /**< Buddy host. */
310 unsigned port; /**< Buddy port. */
311 pj_bool_t monitor; /**< Should we monitor? */
312 pjsip_dialog *dlg; /**< The underlying dialog. */
313 pjsip_evsub *sub; /**< Buddy presence subscription */
314 unsigned term_code; /**< Subscription termination code */
315 pj_str_t term_reason;/**< Subscription termination reason */
316 pjsip_pres_status status; /**< Buddy presence status. */
317 pj_timer_entry timer; /**< Resubscription timer */
318} pjsua_buddy;
319
320
321/**
322 * File player/recorder data.
323 */
324typedef struct pjsua_file_data
325{
326 pj_bool_t type; /* 0=player, 1=playlist */
327 pjmedia_port *port;
328 pj_pool_t *pool;
329 unsigned slot;
330} pjsua_file_data;
331
332
333/**
334 * Additional parameters for conference bridge.
335 */
336typedef struct pjsua_conf_setting
337{
338 unsigned channel_count;
339 unsigned samples_per_frame;
340 unsigned bits_per_sample;
341} pjsua_conf_setting;
342
343typedef struct pjsua_stun_resolve
344{
345 PJ_DECL_LIST_MEMBER(struct pjsua_stun_resolve);
346
347 pj_pool_t *pool; /**< Pool */
348 int ref_cnt; /**< Reference count */
349 pj_bool_t destroy_flag; /**< To be destroyed */
350 pj_bool_t has_result;
351 unsigned count; /**< # of entries */
352 pj_str_t *srv; /**< Array of entries */
353 unsigned idx; /**< Current index */
354 void *token; /**< App token */
355 pj_stun_resolve_cb cb; /**< App callback */
356 pj_bool_t blocking; /**< Blocking? */
357 pj_status_t status; /**< Session status */
358 pj_sockaddr addr; /**< Result */
359 pj_stun_sock *stun_sock; /**< Testing STUN sock */
360} pjsua_stun_resolve;
361
362/* See also pjsua_vid_win_type_name() */
363typedef enum pjsua_vid_win_type
364{
365 PJSUA_WND_TYPE_NONE,
366 PJSUA_WND_TYPE_PREVIEW,
367 PJSUA_WND_TYPE_STREAM
368} pjsua_vid_win_type;
369
370typedef struct pjsua_vid_win
371{
372 pjsua_vid_win_type type; /**< Type. */
373 pj_pool_t *pool; /**< Own pool. */
374 unsigned ref_cnt; /**< Reference counter. */
375 pjmedia_vid_port *vp_cap; /**< Capture vidport. */
376 pjmedia_vid_port *vp_rend; /**< Renderer vidport */
377 pjmedia_port *tee; /**< Video tee */
378 pjmedia_vid_dev_index preview_cap_id;/**< Capture dev id */
379 pj_bool_t preview_running;/**< Preview is started*/
380 pj_bool_t is_native; /**< Preview is by dev */
381} pjsua_vid_win;
382
383
384typedef struct pjsua_timer_list
385{
386 PJ_DECL_LIST_MEMBER(struct pjsua_timer_list);
387 pj_timer_entry entry;
388 void (*cb)(void *user_data);
389 void *user_data;
390} pjsua_timer_list;
391
392
393/**
394 * Global pjsua application data.
395 */
396struct pjsua_data
397{
398
399 /* Control: */
400 pj_caching_pool cp; /**< Global pool factory. */
401 pj_pool_t *pool; /**< pjsua's private pool. */
402 pj_mutex_t *mutex; /**< Mutex protection for this data */
403 unsigned mutex_nesting_level; /**< Mutex nesting level. */
404 pj_thread_t *mutex_owner; /**< Mutex owner. */
405 pjsua_state state; /**< Library state. */
406
407 /* Logging: */
408 pjsua_logging_config log_cfg; /**< Current logging config. */
409 pj_oshandle_t log_file; /**<Output log file handle */
410
411 /* SIP: */
412 pjsip_endpoint *endpt; /**< Global endpoint. */
413 pjsip_module mod; /**< pjsua's PJSIP module. */
414 pjsua_transport_data tpdata[8]; /**< Array of transports. */
415 pjsip_tp_state_callback old_tp_cb; /**< Old transport callback. */
416
417 /* Threading: */
418 pj_bool_t thread_quit_flag; /**< Thread quit flag. */
419 pj_thread_t *thread[4]; /**< Array of threads. */
420
421 /* STUN and resolver */
422 pj_stun_config stun_cfg; /**< Global STUN settings. */
423 pj_sockaddr stun_srv; /**< Resolved STUN server address */
424 pj_status_t stun_status; /**< STUN server status. */
425 pjsua_stun_resolve stun_res; /**< List of pending STUN resolution*/
426 pj_dns_resolver *resolver; /**< DNS resolver. */
427
428 /* Detected NAT type */
429 pj_stun_nat_type nat_type; /**< NAT type. */
430 pj_status_t nat_status; /**< Detection status. */
431 pj_bool_t nat_in_progress; /**< Detection in progress */
432
433 /* List of outbound proxies: */
434 pjsip_route_hdr outbound_proxy;
435
436 /* Account: */
437 unsigned acc_cnt; /**< Number of accounts. */
438 pjsua_acc_id default_acc; /**< Default account ID */
439 pjsua_acc acc[PJSUA_MAX_ACC]; /**< Account array. */
440 pjsua_acc_id acc_ids[PJSUA_MAX_ACC]; /**< Acc sorted by prio*/
441
442 /* Calls: */
443 pjsua_config ua_cfg; /**< UA config. */
444 unsigned call_cnt; /**< Call counter. */
445 pjsua_call calls[PJSUA_MAX_CALLS];/**< Calls array. */
446 pjsua_call_id next_call_id; /**< Next call id to use*/
447
448 /* Buddy; */
449 unsigned buddy_cnt; /**< Buddy count. */
450 pjsua_buddy buddy[PJSUA_MAX_BUDDIES]; /**< Buddy array. */
451
452 /* Presence: */
453 pj_timer_entry pres_timer;/**< Presence refresh timer. */
454
455 /* Media: */
456 pjsua_media_config media_cfg; /**< Media config. */
457 pjmedia_endpt *med_endpt; /**< Media endpoint. */
458 pjsua_conf_setting mconf_cfg; /**< Additionan conf. bridge. param */
459 pjmedia_conf *mconf; /**< Conference bridge. */
460 pj_bool_t is_mswitch;/**< Are we using audio switchboard
461 (a.k.a APS-Direct) */
462
463 /* Sound device */
464 pjmedia_aud_dev_index cap_dev; /**< Capture device ID. */
465 pjmedia_aud_dev_index play_dev; /**< Playback device ID. */
466 pj_uint32_t aud_svmask;/**< Which settings to save */
467 pjmedia_aud_param aud_param; /**< User settings to sound dev */
468 pj_bool_t aud_open_cnt;/**< How many # device is opened */
469 pj_bool_t no_snd; /**< No sound (app will manage it) */
470 pj_pool_t *snd_pool; /**< Sound's private pool. */
471 pjmedia_snd_port *snd_port; /**< Sound port. */
472 pj_timer_entry snd_idle_timer;/**< Sound device idle timer. */
473 pjmedia_master_port *null_snd; /**< Master port for null sound. */
474 pjmedia_port *null_port; /**< Null port. */
475 pj_bool_t snd_is_on; /**< Media flow is currently active */
476
477 /* Video device */
478 pjmedia_vid_dev_index vcap_dev; /**< Capture device ID. */
479 pjmedia_vid_dev_index vrdr_dev; /**< Playback device ID. */
480
481 /* File players: */
482 unsigned player_cnt;/**< Number of file players. */
483 pjsua_file_data player[PJSUA_MAX_PLAYERS];/**< Array of players.*/
484
485 /* File recorders: */
486 unsigned rec_cnt; /**< Number of file recorders. */
487 pjsua_file_data recorder[PJSUA_MAX_RECORDERS];/**< Array of recs.*/
488
489 /* Video windows */
490#if PJSUA_HAS_VIDEO
491 pjsua_vid_win win[PJSUA_MAX_VID_WINS]; /**< Array of windows */
492#endif
493
494 /* Timer entry list */
495 pjsua_timer_list timer_list;
496 pj_mutex_t *timer_mutex;
497};
498
499
500extern struct pjsua_data pjsua_var;
501
502/**
503 * Get the instance of pjsua
504 */
505PJ_DECL(struct pjsua_data*) pjsua_get_var(void);
506
507
508
509/**
510 * IM callback data.
511 */
512typedef struct pjsua_im_data
513{
514 pjsua_acc_id acc_id;
515 pjsua_call_id call_id;
516 pj_str_t to;
517 pj_str_t body;
518 void *user_data;
519} pjsua_im_data;
520
521pj_status_t pjsua_media_apply_xml_control(pjsua_call_id call_id,
522 const pj_str_t *xml_st);
523
524
525/**
526 * Duplicate IM data.
527 */
528PJ_INLINE(pjsua_im_data*) pjsua_im_data_dup(pj_pool_t *pool,
529 const pjsua_im_data *src)
530{
531 pjsua_im_data *dst;
532
533 dst = (pjsua_im_data*) pj_pool_alloc(pool, sizeof(*dst));
534 dst->acc_id = src->acc_id;
535 dst->call_id = src->call_id;
536 pj_strdup_with_null(pool, &dst->to, &src->to);
537 dst->user_data = src->user_data;
538 pj_strdup_with_null(pool, &dst->body, &src->body);
539
540 return dst;
541}
542
543
544#if 1
545
546PJ_INLINE(void) PJSUA_LOCK()
547{
548 pj_mutex_lock(pjsua_var.mutex);
549 pjsua_var.mutex_owner = pj_thread_this();
550 ++pjsua_var.mutex_nesting_level;
551}
552
553PJ_INLINE(void) PJSUA_UNLOCK()
554{
555 if (--pjsua_var.mutex_nesting_level == 0)
556 pjsua_var.mutex_owner = NULL;
557 pj_mutex_unlock(pjsua_var.mutex);
558}
559
560PJ_INLINE(pj_status_t) PJSUA_TRY_LOCK()
561{
562 pj_status_t status;
563 status = pj_mutex_trylock(pjsua_var.mutex);
564 if (status == PJ_SUCCESS) {
565 pjsua_var.mutex_owner = pj_thread_this();
566 ++pjsua_var.mutex_nesting_level;
567 }
568 return status;
569}
570
571PJ_INLINE(pj_bool_t) PJSUA_LOCK_IS_LOCKED()
572{
573 return pjsua_var.mutex_owner == pj_thread_this();
574}
575
576#else
577#define PJSUA_LOCK()
578#define PJSUA_TRY_LOCK() PJ_SUCCESS
579#define PJSUA_UNLOCK()
580#define PJSUA_LOCK_IS_LOCKED() PJ_TRUE
581#endif
582
583/* Core */
584void pjsua_set_state(pjsua_state new_state);
585
586/******
587 * STUN resolution
588 */
589/* Resolve the STUN server */
590pj_status_t resolve_stun_server(pj_bool_t wait);
591
592/**
593 * Normalize route URI (check for ";lr" and append one if it doesn't
594 * exist and pjsua_config.force_lr is set.
595 */
596pj_status_t normalize_route_uri(pj_pool_t *pool, pj_str_t *uri);
597
598/* acc use stun? */
599pj_bool_t pjsua_sip_acc_is_using_stun(pjsua_acc_id acc_id);
600
601/* Get local transport address suitable to be used for Via or Contact address
602 * to send request to the specified destination URI.
603 */
604pj_status_t pjsua_acc_get_uac_addr(pjsua_acc_id acc_id,
605 pj_pool_t *pool,
606 const pj_str_t *dst_uri,
607 pjsip_host_port *addr,
608 pjsip_transport_type_e *p_tp_type,
609 int *p_secure,
610 const void **p_tp);
611
612/**
613 * Handle incoming invite request.
614 */
615pj_bool_t pjsua_call_on_incoming(pjsip_rx_data *rdata);
616
617/*
618 * Media channel.
619 */
620pj_status_t pjsua_media_channel_init(pjsua_call_id call_id,
621 pjsip_role_e role,
622 int security_level,
623 pj_pool_t *tmp_pool,
624 const pjmedia_sdp_session *rem_sdp,
625 int *sip_err_code,
626 pj_bool_t async,
627 pjsua_med_tp_state_cb cb);
628pj_status_t pjsua_media_channel_create_sdp(pjsua_call_id call_id,
629 pj_pool_t *pool,
630 const pjmedia_sdp_session *rem_sdp,
631 pjmedia_sdp_session **p_sdp,
632 int *sip_err_code);
633pj_status_t pjsua_media_channel_update(pjsua_call_id call_id,
634 const pjmedia_sdp_session *local_sdp,
635 const pjmedia_sdp_session *remote_sdp);
636pj_status_t pjsua_media_channel_deinit(pjsua_call_id call_id);
637
638pj_status_t pjsua_call_media_init(pjsua_call_media *call_med,
639 pjmedia_type type,
640 const pjsua_transport_config *tcfg,
641 int security_level,
642 int *sip_err_code,
643 pj_bool_t async,
644 pjsua_med_tp_state_cb cb);
645void pjsua_set_media_tp_state(pjsua_call_media *call_med, pjsua_med_tp_st tp_st);
646
647void pjsua_media_prov_clean_up(pjsua_call_id call_id);
648
649/* Callback to receive media events */
650pj_status_t call_media_on_event(pjmedia_event *event,
651 void *user_data);
652
653/**
654 * Init presence.
655 */
656pj_status_t pjsua_pres_init();
657
658/*
659 * Start presence subsystem.
660 */
661pj_status_t pjsua_pres_start(void);
662
663/**
664 * Refresh presence subscriptions
665 */
666void pjsua_pres_refresh(void);
667
668/*
669 * Update server subscription (e.g. when our online status has changed)
670 */
671void pjsua_pres_update_acc(int acc_id, pj_bool_t force);
672
673/*
674 * Shutdown presence.
675 */
676void pjsua_pres_shutdown(unsigned flags);
677
678/**
679 * Init presence for aoocunt.
680 */
681pj_status_t pjsua_pres_init_acc(int acc_id);
682
683/**
684 * Send PUBLISH
685 */
686pj_status_t pjsua_pres_init_publish_acc(int acc_id);
687
688/**
689 * Send un-PUBLISH
690 */
691void pjsua_pres_unpublish(pjsua_acc *acc, unsigned flags);
692
693/**
694 * Terminate server subscription for the account
695 */
696void pjsua_pres_delete_acc(int acc_id, unsigned flags);
697
698/**
699 * Init IM module handler to handle incoming MESSAGE outside dialog.
700 */
701pj_status_t pjsua_im_init(void);
702
703/**
704 * Start MWI subscription
705 */
706pj_status_t pjsua_start_mwi(pjsua_acc_id acc_id, pj_bool_t force_renew);
707
708/**
709 * Init call subsystem.
710 */
711pj_status_t pjsua_call_subsys_init(const pjsua_config *cfg);
712
713/**
714 * Start call subsystem.
715 */
716pj_status_t pjsua_call_subsys_start(void);
717
718/**
719 * Init media subsystems.
720 */
721pj_status_t pjsua_media_subsys_init(const pjsua_media_config *cfg);
722
723/**
724 * Start pjsua media subsystem.
725 */
726pj_status_t pjsua_media_subsys_start(void);
727
728/**
729 * Destroy pjsua media subsystem.
730 */
731pj_status_t pjsua_media_subsys_destroy(unsigned flags);
732
733/**
734 * Private: check if we can accept the message.
735 * If not, then p_accept header will be filled with a valid
736 * Accept header.
737 */
738pj_bool_t pjsua_im_accept_pager(pjsip_rx_data *rdata,
739 pjsip_accept_hdr **p_accept_hdr);
740
741/**
742 * Private: process pager message.
743 * This may trigger pjsua_ui_on_pager() or pjsua_ui_on_typing().
744 */
745void pjsua_im_process_pager(int call_id, const pj_str_t *from,
746 const pj_str_t *to, pjsip_rx_data *rdata);
747
748
749/**
750 * Create Accept header for MESSAGE.
751 */
752pjsip_accept_hdr* pjsua_im_create_accept(pj_pool_t *pool);
753
754/*
755 * Add additional headers etc in msg_data specified by application
756 * when sending requests.
757 */
758void pjsua_process_msg_data(pjsip_tx_data *tdata,
759 const pjsua_msg_data *msg_data);
760
761
762/*
763 * Add route_set to outgoing requests
764 */
765void pjsua_set_msg_route_set( pjsip_tx_data *tdata,
766 const pjsip_route_hdr *route_set );
767
768
769/*
770 * Simple version of MIME type parsing (it doesn't support parameters)
771 */
772void pjsua_parse_media_type( pj_pool_t *pool,
773 const pj_str_t *mime,
774 pjsip_media_type *media_type);
775
776
777/*
778 * Internal function to init transport selector from transport id.
779 */
780void pjsua_init_tpselector(pjsua_transport_id tp_id,
781 pjsip_tpselector *sel);
782
783pjsip_dialog* on_dlg_forked(pjsip_dialog *first_set, pjsip_rx_data *res);
784pj_status_t acquire_call(const char *title,
785 pjsua_call_id call_id,
786 pjsua_call **p_call,
787 pjsip_dialog **p_dlg);
788const char *good_number(char *buf, pj_int32_t val);
789void print_call(const char *title,
790 int call_id,
791 char *buf, pj_size_t size);
792
793/*
794 * Audio
795 */
796pj_status_t pjsua_aud_subsys_init(void);
797pj_status_t pjsua_aud_subsys_start(void);
798pj_status_t pjsua_aud_subsys_destroy(void);
799void pjsua_aud_stop_stream(pjsua_call_media *call_med);
800pj_status_t pjsua_aud_channel_update(pjsua_call_media *call_med,
801 pj_pool_t *tmp_pool,
802 pjmedia_stream_info *si,
803 const pjmedia_sdp_session *local_sdp,
804 const pjmedia_sdp_session *remote_sdp);
805void pjsua_check_snd_dev_idle();
806
807/*
808 * Video
809 */
810pj_status_t pjsua_vid_subsys_init(void);
811pj_status_t pjsua_vid_subsys_start(void);
812pj_status_t pjsua_vid_subsys_destroy(void);
813void pjsua_vid_stop_stream(pjsua_call_media *call_med);
814pj_status_t pjsua_vid_channel_init(pjsua_call_media *call_med);
815pj_status_t pjsua_vid_channel_update(pjsua_call_media *call_med,
816 pj_pool_t *tmp_pool,
817 pjmedia_vid_stream_info *si,
818 const pjmedia_sdp_session *local_sdp,
819 const pjmedia_sdp_session *remote_sdp);
820
821#if PJSUA_HAS_VIDEO
822PJ_DECL(void) pjsua_vid_win_reset(pjsua_vid_win_id wid);
823#else
824# define pjsua_vid_win_reset(wid)
825#endif
826
827/*
828 * Schedule check for the need of re-INVITE/UPDATE after media update
829 */
830void pjsua_call_schedule_reinvite_check(pjsua_call *call, unsigned delay_ms);
831
832PJ_END_DECL
833
834#endif /* __PJSUA_INTERNAL_H__ */
835