blob: 1ed8f3af07c095451b5a12e6a6b6a6852ee54fa0 [file] [log] [blame]
Benny Prijono268ca612006-02-07 12:34:11 +00001/* $Id$ */
2/*
3 * Copyright (C) 2003-2006 Benny Prijono <benny@prijono.org>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (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 __PJSUA_H__
20#define __PJSUA_H__
21
22/* Include all PJSIP core headers. */
23#include <pjsip.h>
24
25/* Include all PJMEDIA headers. */
26#include <pjmedia.h>
27
Benny Prijono1f9afba2006-02-10 15:57:32 +000028/* Include all PJMEDIA-CODEC headers. */
29#include <pjmedia-codec.h>
30
Benny Prijono268ca612006-02-07 12:34:11 +000031/* Include all PJSIP-UA headers */
32#include <pjsip_ua.h>
33
Benny Prijono834aee32006-02-19 01:38:06 +000034/* Include all PJSIP-SIMPLE headers */
35#include <pjsip_simple.h>
36
Benny Prijono268ca612006-02-07 12:34:11 +000037/* Include all PJLIB-UTIL headers. */
38#include <pjlib-util.h>
39
40/* Include all PJLIB headers. */
41#include <pjlib.h>
42
43
Benny Prijono1a01ad32006-02-07 21:13:28 +000044PJ_BEGIN_DECL
45
Benny Prijono632ce712006-02-09 14:01:40 +000046
Benny Prijonof3195072006-02-14 21:15:30 +000047/**
48 * Max buddies in buddy list.
49 */
Benny Prijonoa91a0032006-02-26 21:23:45 +000050#ifndef PJSUA_MAX_BUDDIES
51# define PJSUA_MAX_BUDDIES 32
52#endif
53
Benny Prijonof3195072006-02-14 21:15:30 +000054
Benny Prijonof04ffdd2006-02-21 00:11:18 +000055/**
56 * Max simultaneous calls.
57 */
Benny Prijonoa91a0032006-02-26 21:23:45 +000058#ifndef PJSUA_MAX_CALLS
59# define PJSUA_MAX_CALLS 256
60#endif
61
62
63/**
64 * Aditional ports to be allocated in the conference ports for non-call
65 * streams.
66 */
67#define PJSUA_CONF_MORE_PORTS 2
68
69
70/**
71 * Maximum accounts.
72 */
73#ifndef PJSUA_MAX_ACC
74# define PJSUA_MAX_ACC 8
75#endif
76
77
78/**
79 * Maximum credentials.
80 */
81#ifndef PJSUA_MAX_CRED
82# define PJSUA_MAX_CRED PJSUA_MAX_ACC
83#endif
Benny Prijonof04ffdd2006-02-21 00:11:18 +000084
85
Benny Prijono632ce712006-02-09 14:01:40 +000086/**
Benny Prijonoa91a0032006-02-26 21:23:45 +000087 * Structure to be attached to invite dialog.
Benny Prijono632ce712006-02-09 14:01:40 +000088 * Given a dialog "dlg", application can retrieve this structure
89 * by accessing dlg->mod_data[pjsua.mod.id].
90 */
Benny Prijonoa91a0032006-02-26 21:23:45 +000091struct pjsua_call
Benny Prijono632ce712006-02-09 14:01:40 +000092{
Benny Prijonoa91a0032006-02-26 21:23:45 +000093 unsigned index; /**< Index in pjsua array. */
Benny Prijonof04ffdd2006-02-21 00:11:18 +000094 pjsip_inv_session *inv; /**< The invite session. */
Benny Prijonoa91a0032006-02-26 21:23:45 +000095 int acc_index; /**< Account index being used. */
Benny Prijonof04ffdd2006-02-21 00:11:18 +000096 pjmedia_session *session; /**< The media session. */
97 unsigned conf_slot; /**< Slot # in conference bridge. */
Benny Prijono26ff9062006-02-21 23:47:00 +000098 pjsip_evsub *xfer_sub; /**< Xfer server subscription, if this
99 call was triggered by xfer. */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000100 pjmedia_sock_info skinfo; /**< Preallocated media sockets. */
101
102 void *app_data; /**< Application data. */
Benny Prijono632ce712006-02-09 14:01:40 +0000103};
104
Benny Prijonoa91a0032006-02-26 21:23:45 +0000105typedef struct pjsua_call pjsua_call;
106
Benny Prijono632ce712006-02-09 14:01:40 +0000107
Benny Prijono834aee32006-02-19 01:38:06 +0000108/**
109 * Buddy data.
110 */
111struct pjsua_buddy
112{
113 pj_str_t uri; /**< Buddy URI */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000114 int acc_index; /**< Which account to use. */
Benny Prijono834aee32006-02-19 01:38:06 +0000115 pj_bool_t monitor; /**< Should we monitor? */
116 pjsip_evsub *sub; /**< Buddy presence subscription */
117 pjsip_pres_status status; /**< Buddy presence status. */
118};
119
120typedef struct pjsua_buddy pjsua_buddy;
121
122
123/**
124 * Server presence subscription list head.
125 */
126struct pjsua_srv_pres
127{
128 PJ_DECL_LIST_MEMBER(struct pjsua_srv_pres);
129 pjsip_evsub *sub;
130 char *remote;
131};
132
133typedef struct pjsua_srv_pres pjsua_srv_pres;
134
135
Benny Prijonoa91a0032006-02-26 21:23:45 +0000136/**
137 * Account
138 */
139struct pjsua_acc
140{
141 int index; /**< Index in accounts array. */
142 pj_str_t local_uri; /**< Uri in From: header. */
143 pj_str_t user_part; /**< User part of local URI. */
144 pj_str_t host_part; /**< Host part of local URI. */
145 pj_str_t contact_uri; /**< Uri in Contact: header. */
146
147 pj_str_t reg_uri; /**< Registrar URI. */
148 pjsip_regc *regc; /**< Client registration session. */
149 pj_int32_t reg_timeout; /**< Default timeout. */
150 pj_timer_entry reg_timer; /**< Registration timer. */
151 pj_status_t reg_last_err; /**< Last registration error. */
152 int reg_last_code; /**< Last status last register. */
153
154 pj_str_t proxy; /**< Proxy URL. */
155 pjsip_route_hdr route_set; /**< Route set. */
156
157 pj_bool_t online_status; /**< Our online status. */
158 pjsua_srv_pres pres_srv_list; /**< Server subscription list. */
159
160 void *app_data; /**< Application data. */
161};
162
163
164typedef struct pjsua_acc pjsua_acc;
165
Benny Prijono632ce712006-02-09 14:01:40 +0000166
Benny Prijono268ca612006-02-07 12:34:11 +0000167/* PJSUA application variables. */
Benny Prijono95196582006-02-09 00:13:40 +0000168struct pjsua
Benny Prijono268ca612006-02-07 12:34:11 +0000169{
170 /* Control: */
Benny Prijono95196582006-02-09 00:13:40 +0000171 pj_caching_pool cp; /**< Global pool factory. */
172 pjsip_endpoint *endpt; /**< Global endpoint. */
173 pj_pool_t *pool; /**< pjsua's private pool. */
174 pjsip_module mod; /**< pjsua's PJSIP module. */
Benny Prijono268ca612006-02-07 12:34:11 +0000175
176
Benny Prijono95196582006-02-09 00:13:40 +0000177 /* Media: */
Benny Prijonocbf37402006-03-01 19:29:10 +0000178 int start_rtp_port;/**< Start of RTP port to try. */
Benny Prijonof04ffdd2006-02-21 00:11:18 +0000179 pjmedia_endpt *med_endpt; /**< Media endpoint. */
Benny Prijono08e0d062006-03-04 14:52:44 +0000180 unsigned clock_rate; /**< Internal clock rate. */
Benny Prijonof04ffdd2006-02-21 00:11:18 +0000181 pjmedia_conf *mconf; /**< Media conference. */
182 pj_bool_t null_audio; /**< Null audio flag. */
Benny Prijono39879152006-02-23 02:09:10 +0000183 char *wav_file; /**< WAV file name to play. */
184 unsigned wav_slot; /**< WAV player slot in bridge */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000185 pj_bool_t auto_play; /**< Auto play file for calls? */
186 pj_bool_t auto_loop; /**< Auto loop RTP stream? */
187 pj_bool_t auto_conf; /**< Auto put to conference? */
188
Benny Prijonof04ffdd2006-02-21 00:11:18 +0000189
Benny Prijono64f851e2006-02-23 13:49:28 +0000190 /* User Agent behaviour: */
Benny Prijono64f851e2006-02-23 13:49:28 +0000191 int auto_answer; /**< Automatically answer in calls. */
192
Benny Prijonoa91a0032006-02-26 21:23:45 +0000193 /* Account: */
194 int acc_cnt; /**< Number of client registrations */
195 pjsua_acc acc[PJSUA_MAX_ACC]; /** Client regs array. */
Benny Prijonoccf95622006-02-07 18:48:01 +0000196
197
198 /* Authentication credentials: */
199
Benny Prijonoa91a0032006-02-26 21:23:45 +0000200 int cred_count; /**< Number of credentials. */
201 pjsip_cred_info cred_info[10]; /**< Array of credentials. */
Benny Prijonoccf95622006-02-07 18:48:01 +0000202
203
Benny Prijonof04ffdd2006-02-21 00:11:18 +0000204 /* Threading (optional): */
Benny Prijono268ca612006-02-07 12:34:11 +0000205 int thread_cnt; /**< Thread count. */
206 pj_thread_t *threads[8]; /**< Thread instances. */
207 pj_bool_t quit_flag; /**< To signal thread to quit. */
208
209 /* Transport (UDP): */
Benny Prijono268ca612006-02-07 12:34:11 +0000210 pj_uint16_t sip_port; /**< SIP signaling port. */
211 pj_sock_t sip_sock; /**< SIP UDP socket. */
212 pj_sockaddr_in sip_sock_name; /**< Public/STUN UDP socket addr. */
Benny Prijono268ca612006-02-07 12:34:11 +0000213
Benny Prijonoa91a0032006-02-26 21:23:45 +0000214 pj_str_t outbound_proxy;/**< Outbound proxy. */
Benny Prijono268ca612006-02-07 12:34:11 +0000215
216
217 /* STUN: */
Benny Prijono268ca612006-02-07 12:34:11 +0000218 pj_str_t stun_srv1;
219 int stun_port1;
220 pj_str_t stun_srv2;
221 int stun_port2;
222
223
Benny Prijonoa91a0032006-02-26 21:23:45 +0000224 /* Logging: */
Benny Prijono268ca612006-02-07 12:34:11 +0000225 int log_level; /**< Logging verbosity. */
226 int app_log_level; /**< stdout log verbosity. */
227 unsigned log_decor; /**< Log decoration. */
Benny Prijonoccf95622006-02-07 18:48:01 +0000228 char *log_filename; /**< Log filename. */
Benny Prijono268ca612006-02-07 12:34:11 +0000229
Benny Prijonof3195072006-02-14 21:15:30 +0000230
Benny Prijonoa91a0032006-02-26 21:23:45 +0000231 /* PJSUA Calls: */
232 int max_calls; /**< Max nb of calls. */
233 int call_cnt; /**< Number of calls. */
234 pjsua_call calls[PJSUA_MAX_CALLS]; /** Calls array. */
Benny Prijonof3195072006-02-14 21:15:30 +0000235
236
Benny Prijono834aee32006-02-19 01:38:06 +0000237 /* SIMPLE and buddy status: */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000238 int buddy_cnt;
239 pjsua_buddy buddies[PJSUA_MAX_BUDDIES];
Benny Prijono1a01ad32006-02-07 21:13:28 +0000240};
Benny Prijono268ca612006-02-07 12:34:11 +0000241
Benny Prijono95196582006-02-09 00:13:40 +0000242
243/** PJSUA instance. */
244extern struct pjsua pjsua;
245
246
Benny Prijono268ca612006-02-07 12:34:11 +0000247
248/*****************************************************************************
Benny Prijono84126ab2006-02-09 09:30:09 +0000249 * PJSUA API (defined in pjsua_core.c).
Benny Prijono268ca612006-02-07 12:34:11 +0000250 */
251
252/**
253 * Initialize pjsua settings with default parameters.
254 */
255void pjsua_default(void);
256
257
258/**
259 * Display error message for the specified error code.
260 */
Benny Prijonobcaed6c2006-02-19 15:37:19 +0000261void pjsua_perror(const char *sender, const char *title,
262 pj_status_t status);
Benny Prijono268ca612006-02-07 12:34:11 +0000263
264
265/**
Benny Prijonoccf95622006-02-07 18:48:01 +0000266 * Initialize pjsua application. Application can call this before parsing
267 * application settings.
268 *
269 * This will initialize all libraries, create endpoint instance, and register
270 * pjsip modules. Transport will NOT be created however.
271 *
272 * Application may register module after calling this function.
Benny Prijono268ca612006-02-07 12:34:11 +0000273 */
274pj_status_t pjsua_init(void);
275
276
277/**
Benny Prijonoccf95622006-02-07 18:48:01 +0000278 * Start pjsua stack. Application calls this after pjsua settings has been
279 * configured.
280 *
281 * This will start the transport, worker threads (if any), and registration
282 * process, if registration is configured.
283 */
284pj_status_t pjsua_start(void);
285
286
287/**
Benny Prijono268ca612006-02-07 12:34:11 +0000288 * Destroy pjsua.
289 */
290pj_status_t pjsua_destroy(void);
291
292
Benny Prijonoa91a0032006-02-26 21:23:45 +0000293/**
294 * Find account for incoming request.
Benny Prijono84126ab2006-02-09 09:30:09 +0000295 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000296int pjsua_find_account_for_incoming(pjsip_rx_data *rdata);
297
298
299/**
300 * Find account for outgoing request.
301 */
302int pjsua_find_account_for_outgoing(const pj_str_t *url);
303
304
305/*****************************************************************************
306 * PJSUA Call API (defined in pjsua_call.c).
307 */
308
309/**
310 * Init pjsua call module.
311 */
312pj_status_t pjsua_call_init(void);
Benny Prijono84126ab2006-02-09 09:30:09 +0000313
Benny Prijono268ca612006-02-07 12:34:11 +0000314/**
315 * Make outgoing call.
316 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000317pj_status_t pjsua_make_call(int acc_index,
318 const char *cstr_dest_uri,
319 int *p_call_index);
Benny Prijono268ca612006-02-07 12:34:11 +0000320
321
Benny Prijono84126ab2006-02-09 09:30:09 +0000322/**
323 * Handle incoming invite request.
324 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000325pj_bool_t pjsua_call_on_incoming(pjsip_rx_data *rdata);
Benny Prijono84126ab2006-02-09 09:30:09 +0000326
327
328/**
Benny Prijonoa91a0032006-02-26 21:23:45 +0000329 * Answer call.
330 */
331void pjsua_call_answer(int call_index, int code);
332
333/**
Benny Prijono26ff9062006-02-21 23:47:00 +0000334 * Hangup call.
335 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000336void pjsua_call_hangup(int call_index, int code);
Benny Prijono26ff9062006-02-21 23:47:00 +0000337
338
339/**
340 * Put call on-hold.
341 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000342void pjsua_call_set_hold(int call_index);
Benny Prijono26ff9062006-02-21 23:47:00 +0000343
344
345/**
346 * Send re-INVITE (to release hold).
347 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000348void pjsua_call_reinvite(int call_index);
Benny Prijono26ff9062006-02-21 23:47:00 +0000349
350
351/**
352 * Transfer call.
353 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000354void pjsua_call_xfer(int call_index, const char *dest);
Benny Prijono26ff9062006-02-21 23:47:00 +0000355
356
357/**
Benny Prijonob0808372006-03-02 21:18:58 +0000358 * Send instant messaging inside INVITE session.
359 */
360void pjsua_call_send_im(int call_index, const char *text);
361
362
363/**
364 * Send IM typing indication inside INVITE session.
365 */
366void pjsua_call_typing(int call_index, pj_bool_t is_typing);
367
368/**
Benny Prijono834aee32006-02-19 01:38:06 +0000369 * Terminate all calls.
370 */
Benny Prijono1a174142006-03-01 20:46:13 +0000371void pjsua_call_hangup_all(void);
Benny Prijono834aee32006-02-19 01:38:06 +0000372
373
Benny Prijono268ca612006-02-07 12:34:11 +0000374/*****************************************************************************
Benny Prijono84126ab2006-02-09 09:30:09 +0000375 * PJSUA Client Registration API (defined in pjsua_reg.c).
Benny Prijonoccf95622006-02-07 18:48:01 +0000376 */
377
378/**
379 * Initialize client registration session.
380 *
381 * @param app_callback Optional callback
382 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000383pj_status_t pjsua_regc_init(int acc_index);
Benny Prijonoccf95622006-02-07 18:48:01 +0000384
385/**
386 * Update registration or perform unregistration. If renew argument is zero,
387 * this will start unregistration process.
388 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000389void pjsua_regc_update(int acc_index, pj_bool_t renew);
Benny Prijonoccf95622006-02-07 18:48:01 +0000390
391
Benny Prijono834aee32006-02-19 01:38:06 +0000392
393
394/*****************************************************************************
395 * PJSUA Presence (pjsua_pres.c)
396 */
397
398/**
399 * Init presence.
400 */
401pj_status_t pjsua_pres_init();
402
403/**
404 * Refresh both presence client and server subscriptions.
405 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000406void pjsua_pres_refresh(int acc_index);
Benny Prijono834aee32006-02-19 01:38:06 +0000407
408/**
409 * Terminate all subscriptions
410 */
411void pjsua_pres_shutdown(void);
412
413/**
414 * Dump presence subscriptions.
415 */
Benny Prijono1a174142006-03-01 20:46:13 +0000416void pjsua_pres_dump(pj_bool_t detail);
Benny Prijono834aee32006-02-19 01:38:06 +0000417
418
Benny Prijonoccf95622006-02-07 18:48:01 +0000419/*****************************************************************************
Benny Prijonob0808372006-03-02 21:18:58 +0000420 * PJSUA Instant Messaging (pjsua_im.c)
421 */
422
423/**
424 * The MESSAGE method (defined in pjsua_im.c)
425 */
426extern const pjsip_method pjsip_message_method;
427
428
429/**
430 * Init IM module handler to handle incoming MESSAGE outside dialog.
431 */
432pj_status_t pjsua_im_init();
433
434
435/**
436 * Create Accept header for MESSAGE.
437 */
438pjsip_accept_hdr* pjsua_im_create_accept(pj_pool_t *pool);
439
440/**
441 * Send IM outside dialog.
442 */
443pj_status_t pjsua_im_send(int acc_index, const char *dst_uri,
444 const char *text);
445
446
447/**
448 * Send typing indication outside dialog.
449 */
450pj_status_t pjsua_im_typing(int acc_index, const char *dst_uri,
451 pj_bool_t is_typing);
452
453
454/**
455 * Private: check if we can accept the message.
456 * If not, then p_accept header will be filled with a valid
457 * Accept header.
458 */
459pj_bool_t pjsua_im_accept_pager(pjsip_rx_data *rdata,
460 const pjsip_accept_hdr **p_accept_hdr);
461
462/**
463 * Private: process pager message.
464 * This may trigger pjsua_ui_on_pager() or pjsua_ui_on_typing().
465 */
466void pjsua_im_process_pager(int call_id, const pj_str_t *from,
467 const pj_str_t *to, pjsip_rx_data *rdata);
468
469
470/*****************************************************************************
Benny Prijono268ca612006-02-07 12:34:11 +0000471 * User Interface API.
Benny Prijono84126ab2006-02-09 09:30:09 +0000472 *
Benny Prijono268ca612006-02-07 12:34:11 +0000473 * The UI API specifies functions that will be called by pjsua upon
474 * occurence of various events.
475 */
476
477/**
478 * Notify UI when invite state has changed.
479 */
Benny Prijonob0808372006-03-02 21:18:58 +0000480void pjsua_ui_on_call_state(int call_index, pjsip_event *e);
Benny Prijono268ca612006-02-07 12:34:11 +0000481
Benny Prijonof3195072006-02-14 21:15:30 +0000482/**
483 * Notify UI when registration status has changed.
484 */
Benny Prijonob0808372006-03-02 21:18:58 +0000485void pjsua_ui_on_reg_state(int acc_index);
486
487/**
488 * Notify UI on incoming pager (i.e. MESSAGE request).
489 * Argument call_index will be -1 if MESSAGE request is not related to an
490 * existing call.
491 */
492void pjsua_ui_on_pager(int call_index, const pj_str_t *from,
493 const pj_str_t *to, const pj_str_t *txt);
494
495
496/**
497 * Notify UI about typing indication.
498 */
499void pjsua_ui_on_typing(int call_index, const pj_str_t *from,
500 const pj_str_t *to, pj_bool_t is_typing);
Benny Prijonof3195072006-02-14 21:15:30 +0000501
502
503/*****************************************************************************
504 * Utilities.
505 *
506 */
507
508/** String to describe invite session states */
509extern const char *pjsua_inv_state_names[];
510
511/**
512 * Parse arguments (pjsua_opt.c).
513 */
514pj_status_t pjsua_parse_args(int argc, char *argv[]);
515
516/**
517 * Load settings from a file.
518 */
519pj_status_t pjsua_load_settings(const char *filename);
520
521/**
Benny Prijonoa91a0032006-02-26 21:23:45 +0000522 * Dump settings.
523 */
524int pjsua_dump_settings(char *buf, pj_size_t max);
525
526/**
Benny Prijonof3195072006-02-14 21:15:30 +0000527 * Save settings to a file.
528 */
529pj_status_t pjsua_save_settings(const char *filename);
530
531
532/*
533 * Verify that valid SIP url is given.
534 * @return PJ_SUCCESS if valid.
535 */
536pj_status_t pjsua_verify_sip_url(const char *c_url);
537
538/*
539 * Dump application states.
540 */
Benny Prijono1a174142006-03-01 20:46:13 +0000541void pjsua_dump(pj_bool_t detail);
Benny Prijonof3195072006-02-14 21:15:30 +0000542
Benny Prijono268ca612006-02-07 12:34:11 +0000543
Benny Prijono1a01ad32006-02-07 21:13:28 +0000544PJ_END_DECL
545
Benny Prijonof3195072006-02-14 21:15:30 +0000546
Benny Prijono268ca612006-02-07 12:34:11 +0000547#endif /* __PJSUA_H__ */