blob: d120a06241c534f2460d4a7cbd2818d89820533f [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. */
180 pjmedia_conf *mconf; /**< Media conference. */
181 pj_bool_t null_audio; /**< Null audio flag. */
Benny Prijono39879152006-02-23 02:09:10 +0000182 char *wav_file; /**< WAV file name to play. */
183 unsigned wav_slot; /**< WAV player slot in bridge */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000184 pj_bool_t auto_play; /**< Auto play file for calls? */
185 pj_bool_t auto_loop; /**< Auto loop RTP stream? */
186 pj_bool_t auto_conf; /**< Auto put to conference? */
187
Benny Prijonof04ffdd2006-02-21 00:11:18 +0000188
Benny Prijono64f851e2006-02-23 13:49:28 +0000189 /* User Agent behaviour: */
Benny Prijono64f851e2006-02-23 13:49:28 +0000190 int auto_answer; /**< Automatically answer in calls. */
191
Benny Prijonoa91a0032006-02-26 21:23:45 +0000192 /* Account: */
193 int acc_cnt; /**< Number of client registrations */
194 pjsua_acc acc[PJSUA_MAX_ACC]; /** Client regs array. */
Benny Prijonoccf95622006-02-07 18:48:01 +0000195
196
197 /* Authentication credentials: */
198
Benny Prijonoa91a0032006-02-26 21:23:45 +0000199 int cred_count; /**< Number of credentials. */
200 pjsip_cred_info cred_info[10]; /**< Array of credentials. */
Benny Prijonoccf95622006-02-07 18:48:01 +0000201
202
Benny Prijonof04ffdd2006-02-21 00:11:18 +0000203 /* Threading (optional): */
Benny Prijono268ca612006-02-07 12:34:11 +0000204 int thread_cnt; /**< Thread count. */
205 pj_thread_t *threads[8]; /**< Thread instances. */
206 pj_bool_t quit_flag; /**< To signal thread to quit. */
207
208 /* Transport (UDP): */
Benny Prijono268ca612006-02-07 12:34:11 +0000209 pj_uint16_t sip_port; /**< SIP signaling port. */
210 pj_sock_t sip_sock; /**< SIP UDP socket. */
211 pj_sockaddr_in sip_sock_name; /**< Public/STUN UDP socket addr. */
Benny Prijono268ca612006-02-07 12:34:11 +0000212
Benny Prijonoa91a0032006-02-26 21:23:45 +0000213 pj_str_t outbound_proxy;/**< Outbound proxy. */
Benny Prijono268ca612006-02-07 12:34:11 +0000214
215
216 /* STUN: */
Benny Prijono268ca612006-02-07 12:34:11 +0000217 pj_str_t stun_srv1;
218 int stun_port1;
219 pj_str_t stun_srv2;
220 int stun_port2;
221
222
Benny Prijonoa91a0032006-02-26 21:23:45 +0000223 /* Logging: */
Benny Prijono268ca612006-02-07 12:34:11 +0000224 int log_level; /**< Logging verbosity. */
225 int app_log_level; /**< stdout log verbosity. */
226 unsigned log_decor; /**< Log decoration. */
Benny Prijonoccf95622006-02-07 18:48:01 +0000227 char *log_filename; /**< Log filename. */
Benny Prijono268ca612006-02-07 12:34:11 +0000228
Benny Prijonof3195072006-02-14 21:15:30 +0000229
Benny Prijonoa91a0032006-02-26 21:23:45 +0000230 /* PJSUA Calls: */
231 int max_calls; /**< Max nb of calls. */
232 int call_cnt; /**< Number of calls. */
233 pjsua_call calls[PJSUA_MAX_CALLS]; /** Calls array. */
Benny Prijonof3195072006-02-14 21:15:30 +0000234
235
Benny Prijono834aee32006-02-19 01:38:06 +0000236 /* SIMPLE and buddy status: */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000237 int buddy_cnt;
238 pjsua_buddy buddies[PJSUA_MAX_BUDDIES];
Benny Prijono1a01ad32006-02-07 21:13:28 +0000239};
Benny Prijono268ca612006-02-07 12:34:11 +0000240
Benny Prijono95196582006-02-09 00:13:40 +0000241
242/** PJSUA instance. */
243extern struct pjsua pjsua;
244
245
Benny Prijono268ca612006-02-07 12:34:11 +0000246
247/*****************************************************************************
Benny Prijono84126ab2006-02-09 09:30:09 +0000248 * PJSUA API (defined in pjsua_core.c).
Benny Prijono268ca612006-02-07 12:34:11 +0000249 */
250
251/**
252 * Initialize pjsua settings with default parameters.
253 */
254void pjsua_default(void);
255
256
257/**
258 * Display error message for the specified error code.
259 */
Benny Prijonobcaed6c2006-02-19 15:37:19 +0000260void pjsua_perror(const char *sender, const char *title,
261 pj_status_t status);
Benny Prijono268ca612006-02-07 12:34:11 +0000262
263
264/**
Benny Prijonoccf95622006-02-07 18:48:01 +0000265 * Initialize pjsua application. Application can call this before parsing
266 * application settings.
267 *
268 * This will initialize all libraries, create endpoint instance, and register
269 * pjsip modules. Transport will NOT be created however.
270 *
271 * Application may register module after calling this function.
Benny Prijono268ca612006-02-07 12:34:11 +0000272 */
273pj_status_t pjsua_init(void);
274
275
276/**
Benny Prijonoccf95622006-02-07 18:48:01 +0000277 * Start pjsua stack. Application calls this after pjsua settings has been
278 * configured.
279 *
280 * This will start the transport, worker threads (if any), and registration
281 * process, if registration is configured.
282 */
283pj_status_t pjsua_start(void);
284
285
286/**
Benny Prijono268ca612006-02-07 12:34:11 +0000287 * Destroy pjsua.
288 */
289pj_status_t pjsua_destroy(void);
290
291
Benny Prijonoa91a0032006-02-26 21:23:45 +0000292/**
293 * Find account for incoming request.
Benny Prijono84126ab2006-02-09 09:30:09 +0000294 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000295int pjsua_find_account_for_incoming(pjsip_rx_data *rdata);
296
297
298/**
299 * Find account for outgoing request.
300 */
301int pjsua_find_account_for_outgoing(const pj_str_t *url);
302
303
304/*****************************************************************************
305 * PJSUA Call API (defined in pjsua_call.c).
306 */
307
308/**
309 * Init pjsua call module.
310 */
311pj_status_t pjsua_call_init(void);
Benny Prijono84126ab2006-02-09 09:30:09 +0000312
Benny Prijono268ca612006-02-07 12:34:11 +0000313/**
314 * Make outgoing call.
315 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000316pj_status_t pjsua_make_call(int acc_index,
317 const char *cstr_dest_uri,
318 int *p_call_index);
Benny Prijono268ca612006-02-07 12:34:11 +0000319
320
Benny Prijono84126ab2006-02-09 09:30:09 +0000321/**
322 * Handle incoming invite request.
323 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000324pj_bool_t pjsua_call_on_incoming(pjsip_rx_data *rdata);
Benny Prijono84126ab2006-02-09 09:30:09 +0000325
326
327/**
Benny Prijonoa91a0032006-02-26 21:23:45 +0000328 * Answer call.
329 */
330void pjsua_call_answer(int call_index, int code);
331
332/**
Benny Prijono26ff9062006-02-21 23:47:00 +0000333 * Hangup call.
334 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000335void pjsua_call_hangup(int call_index, int code);
Benny Prijono26ff9062006-02-21 23:47:00 +0000336
337
338/**
339 * Put call on-hold.
340 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000341void pjsua_call_set_hold(int call_index);
Benny Prijono26ff9062006-02-21 23:47:00 +0000342
343
344/**
345 * Send re-INVITE (to release hold).
346 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000347void pjsua_call_reinvite(int call_index);
Benny Prijono26ff9062006-02-21 23:47:00 +0000348
349
350/**
351 * Transfer call.
352 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000353void pjsua_call_xfer(int call_index, const char *dest);
Benny Prijono26ff9062006-02-21 23:47:00 +0000354
355
356/**
Benny Prijonob0808372006-03-02 21:18:58 +0000357 * Send instant messaging inside INVITE session.
358 */
359void pjsua_call_send_im(int call_index, const char *text);
360
361
362/**
363 * Send IM typing indication inside INVITE session.
364 */
365void pjsua_call_typing(int call_index, pj_bool_t is_typing);
366
367/**
Benny Prijono834aee32006-02-19 01:38:06 +0000368 * Terminate all calls.
369 */
Benny Prijono1a174142006-03-01 20:46:13 +0000370void pjsua_call_hangup_all(void);
Benny Prijono834aee32006-02-19 01:38:06 +0000371
372
Benny Prijono268ca612006-02-07 12:34:11 +0000373/*****************************************************************************
Benny Prijono84126ab2006-02-09 09:30:09 +0000374 * PJSUA Client Registration API (defined in pjsua_reg.c).
Benny Prijonoccf95622006-02-07 18:48:01 +0000375 */
376
377/**
378 * Initialize client registration session.
379 *
380 * @param app_callback Optional callback
381 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000382pj_status_t pjsua_regc_init(int acc_index);
Benny Prijonoccf95622006-02-07 18:48:01 +0000383
384/**
385 * Update registration or perform unregistration. If renew argument is zero,
386 * this will start unregistration process.
387 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000388void pjsua_regc_update(int acc_index, pj_bool_t renew);
Benny Prijonoccf95622006-02-07 18:48:01 +0000389
390
Benny Prijono834aee32006-02-19 01:38:06 +0000391
392
393/*****************************************************************************
394 * PJSUA Presence (pjsua_pres.c)
395 */
396
397/**
398 * Init presence.
399 */
400pj_status_t pjsua_pres_init();
401
402/**
403 * Refresh both presence client and server subscriptions.
404 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000405void pjsua_pres_refresh(int acc_index);
Benny Prijono834aee32006-02-19 01:38:06 +0000406
407/**
408 * Terminate all subscriptions
409 */
410void pjsua_pres_shutdown(void);
411
412/**
413 * Dump presence subscriptions.
414 */
Benny Prijono1a174142006-03-01 20:46:13 +0000415void pjsua_pres_dump(pj_bool_t detail);
Benny Prijono834aee32006-02-19 01:38:06 +0000416
417
Benny Prijonoccf95622006-02-07 18:48:01 +0000418/*****************************************************************************
Benny Prijonob0808372006-03-02 21:18:58 +0000419 * PJSUA Instant Messaging (pjsua_im.c)
420 */
421
422/**
423 * The MESSAGE method (defined in pjsua_im.c)
424 */
425extern const pjsip_method pjsip_message_method;
426
427
428/**
429 * Init IM module handler to handle incoming MESSAGE outside dialog.
430 */
431pj_status_t pjsua_im_init();
432
433
434/**
435 * Create Accept header for MESSAGE.
436 */
437pjsip_accept_hdr* pjsua_im_create_accept(pj_pool_t *pool);
438
439/**
440 * Send IM outside dialog.
441 */
442pj_status_t pjsua_im_send(int acc_index, const char *dst_uri,
443 const char *text);
444
445
446/**
447 * Send typing indication outside dialog.
448 */
449pj_status_t pjsua_im_typing(int acc_index, const char *dst_uri,
450 pj_bool_t is_typing);
451
452
453/**
454 * Private: check if we can accept the message.
455 * If not, then p_accept header will be filled with a valid
456 * Accept header.
457 */
458pj_bool_t pjsua_im_accept_pager(pjsip_rx_data *rdata,
459 const pjsip_accept_hdr **p_accept_hdr);
460
461/**
462 * Private: process pager message.
463 * This may trigger pjsua_ui_on_pager() or pjsua_ui_on_typing().
464 */
465void pjsua_im_process_pager(int call_id, const pj_str_t *from,
466 const pj_str_t *to, pjsip_rx_data *rdata);
467
468
469/*****************************************************************************
Benny Prijono268ca612006-02-07 12:34:11 +0000470 * User Interface API.
Benny Prijono84126ab2006-02-09 09:30:09 +0000471 *
Benny Prijono268ca612006-02-07 12:34:11 +0000472 * The UI API specifies functions that will be called by pjsua upon
473 * occurence of various events.
474 */
475
476/**
477 * Notify UI when invite state has changed.
478 */
Benny Prijonob0808372006-03-02 21:18:58 +0000479void pjsua_ui_on_call_state(int call_index, pjsip_event *e);
Benny Prijono268ca612006-02-07 12:34:11 +0000480
Benny Prijonof3195072006-02-14 21:15:30 +0000481/**
482 * Notify UI when registration status has changed.
483 */
Benny Prijonob0808372006-03-02 21:18:58 +0000484void pjsua_ui_on_reg_state(int acc_index);
485
486/**
487 * Notify UI on incoming pager (i.e. MESSAGE request).
488 * Argument call_index will be -1 if MESSAGE request is not related to an
489 * existing call.
490 */
491void pjsua_ui_on_pager(int call_index, const pj_str_t *from,
492 const pj_str_t *to, const pj_str_t *txt);
493
494
495/**
496 * Notify UI about typing indication.
497 */
498void pjsua_ui_on_typing(int call_index, const pj_str_t *from,
499 const pj_str_t *to, pj_bool_t is_typing);
Benny Prijonof3195072006-02-14 21:15:30 +0000500
501
502/*****************************************************************************
503 * Utilities.
504 *
505 */
506
507/** String to describe invite session states */
508extern const char *pjsua_inv_state_names[];
509
510/**
511 * Parse arguments (pjsua_opt.c).
512 */
513pj_status_t pjsua_parse_args(int argc, char *argv[]);
514
515/**
516 * Load settings from a file.
517 */
518pj_status_t pjsua_load_settings(const char *filename);
519
520/**
Benny Prijonoa91a0032006-02-26 21:23:45 +0000521 * Dump settings.
522 */
523int pjsua_dump_settings(char *buf, pj_size_t max);
524
525/**
Benny Prijonof3195072006-02-14 21:15:30 +0000526 * Save settings to a file.
527 */
528pj_status_t pjsua_save_settings(const char *filename);
529
530
531/*
532 * Verify that valid SIP url is given.
533 * @return PJ_SUCCESS if valid.
534 */
535pj_status_t pjsua_verify_sip_url(const char *c_url);
536
537/*
538 * Dump application states.
539 */
Benny Prijono1a174142006-03-01 20:46:13 +0000540void pjsua_dump(pj_bool_t detail);
Benny Prijonof3195072006-02-14 21:15:30 +0000541
Benny Prijono268ca612006-02-07 12:34:11 +0000542
Benny Prijono1a01ad32006-02-07 21:13:28 +0000543PJ_END_DECL
544
Benny Prijonof3195072006-02-14 21:15:30 +0000545
Benny Prijono268ca612006-02-07 12:34:11 +0000546#endif /* __PJSUA_H__ */