blob: 95d1398c1ac02915a391b6597bdef096108eae04 [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 Prijono105217f2006-03-06 16:25:59 +0000103 pj_timer_entry refresh_tm;/**< Timer to send re-INVITE. */
104 pj_timer_entry hangup_tm; /**< Timer to hangup call. */
Benny Prijono632ce712006-02-09 14:01:40 +0000105};
106
Benny Prijonoa91a0032006-02-26 21:23:45 +0000107typedef struct pjsua_call pjsua_call;
108
Benny Prijono632ce712006-02-09 14:01:40 +0000109
Benny Prijono834aee32006-02-19 01:38:06 +0000110/**
111 * Buddy data.
112 */
113struct pjsua_buddy
114{
115 pj_str_t uri; /**< Buddy URI */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000116 int acc_index; /**< Which account to use. */
Benny Prijono834aee32006-02-19 01:38:06 +0000117 pj_bool_t monitor; /**< Should we monitor? */
118 pjsip_evsub *sub; /**< Buddy presence subscription */
119 pjsip_pres_status status; /**< Buddy presence status. */
120};
121
122typedef struct pjsua_buddy pjsua_buddy;
123
124
125/**
126 * Server presence subscription list head.
127 */
128struct pjsua_srv_pres
129{
130 PJ_DECL_LIST_MEMBER(struct pjsua_srv_pres);
131 pjsip_evsub *sub;
132 char *remote;
133};
134
135typedef struct pjsua_srv_pres pjsua_srv_pres;
136
137
Benny Prijonoa91a0032006-02-26 21:23:45 +0000138/**
139 * Account
140 */
141struct pjsua_acc
142{
143 int index; /**< Index in accounts array. */
144 pj_str_t local_uri; /**< Uri in From: header. */
145 pj_str_t user_part; /**< User part of local URI. */
146 pj_str_t host_part; /**< Host part of local URI. */
147 pj_str_t contact_uri; /**< Uri in Contact: header. */
148
149 pj_str_t reg_uri; /**< Registrar URI. */
150 pjsip_regc *regc; /**< Client registration session. */
151 pj_int32_t reg_timeout; /**< Default timeout. */
152 pj_timer_entry reg_timer; /**< Registration timer. */
153 pj_status_t reg_last_err; /**< Last registration error. */
154 int reg_last_code; /**< Last status last register. */
155
156 pj_str_t proxy; /**< Proxy URL. */
157 pjsip_route_hdr route_set; /**< Route set. */
158
159 pj_bool_t online_status; /**< Our online status. */
160 pjsua_srv_pres pres_srv_list; /**< Server subscription list. */
161
162 void *app_data; /**< Application data. */
163};
164
165
166typedef struct pjsua_acc pjsua_acc;
167
Benny Prijono632ce712006-02-09 14:01:40 +0000168
Benny Prijono268ca612006-02-07 12:34:11 +0000169/* PJSUA application variables. */
Benny Prijono95196582006-02-09 00:13:40 +0000170struct pjsua
Benny Prijono268ca612006-02-07 12:34:11 +0000171{
172 /* Control: */
Benny Prijono95196582006-02-09 00:13:40 +0000173 pj_caching_pool cp; /**< Global pool factory. */
174 pjsip_endpoint *endpt; /**< Global endpoint. */
175 pj_pool_t *pool; /**< pjsua's private pool. */
176 pjsip_module mod; /**< pjsua's PJSIP module. */
Benny Prijono268ca612006-02-07 12:34:11 +0000177
178
Benny Prijono95196582006-02-09 00:13:40 +0000179 /* Media: */
Benny Prijonocbf37402006-03-01 19:29:10 +0000180 int start_rtp_port;/**< Start of RTP port to try. */
Benny Prijonof04ffdd2006-02-21 00:11:18 +0000181 pjmedia_endpt *med_endpt; /**< Media endpoint. */
Benny Prijono08e0d062006-03-04 14:52:44 +0000182 unsigned clock_rate; /**< Internal clock rate. */
Benny Prijonof04ffdd2006-02-21 00:11:18 +0000183 pjmedia_conf *mconf; /**< Media conference. */
184 pj_bool_t null_audio; /**< Null audio flag. */
Benny Prijono39879152006-02-23 02:09:10 +0000185 char *wav_file; /**< WAV file name to play. */
186 unsigned wav_slot; /**< WAV player slot in bridge */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000187 pj_bool_t auto_play; /**< Auto play file for calls? */
188 pj_bool_t auto_loop; /**< Auto loop RTP stream? */
189 pj_bool_t auto_conf; /**< Auto put to conference? */
Benny Prijono1c2bf462006-03-05 11:54:02 +0000190 int complexity; /**< Codec complexity. */
191 int quality; /**< Codec quality. */
192
Benny Prijonoa91a0032006-02-26 21:23:45 +0000193
Benny Prijonoeb30bf52006-03-04 20:43:52 +0000194 /* Codec arguments: */
195 int codec_cnt; /**< Number of --add-codec args. */
196 pj_str_t codec_arg[32]; /**< Array of --add-codec args. */
197 pj_status_t (*codec_deinit[32])(void); /**< Array of funcs. */
Benny Prijonof04ffdd2006-02-21 00:11:18 +0000198
Benny Prijono64f851e2006-02-23 13:49:28 +0000199 /* User Agent behaviour: */
Benny Prijono64f851e2006-02-23 13:49:28 +0000200 int auto_answer; /**< Automatically answer in calls. */
Benny Prijono105217f2006-03-06 16:25:59 +0000201 int uas_refresh; /**< Time to re-INVITE. */
202 int uas_duration; /**< Max call duration. */
Benny Prijono64f851e2006-02-23 13:49:28 +0000203
Benny Prijonoa91a0032006-02-26 21:23:45 +0000204 /* Account: */
Benny Prijonoccb03fa2006-03-06 13:35:47 +0000205 pj_bool_t has_acc; /**< Any --id cmdline? */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000206 int acc_cnt; /**< Number of client registrations */
207 pjsua_acc acc[PJSUA_MAX_ACC]; /** Client regs array. */
Benny Prijonoccf95622006-02-07 18:48:01 +0000208
209
210 /* Authentication credentials: */
211
Benny Prijonoa91a0032006-02-26 21:23:45 +0000212 int cred_count; /**< Number of credentials. */
213 pjsip_cred_info cred_info[10]; /**< Array of credentials. */
Benny Prijonoccf95622006-02-07 18:48:01 +0000214
215
Benny Prijonof04ffdd2006-02-21 00:11:18 +0000216 /* Threading (optional): */
Benny Prijono268ca612006-02-07 12:34:11 +0000217 int thread_cnt; /**< Thread count. */
218 pj_thread_t *threads[8]; /**< Thread instances. */
219 pj_bool_t quit_flag; /**< To signal thread to quit. */
220
221 /* Transport (UDP): */
Benny Prijono268ca612006-02-07 12:34:11 +0000222 pj_uint16_t sip_port; /**< SIP signaling port. */
223 pj_sock_t sip_sock; /**< SIP UDP socket. */
224 pj_sockaddr_in sip_sock_name; /**< Public/STUN UDP socket addr. */
Benny Prijono268ca612006-02-07 12:34:11 +0000225
Benny Prijonoa91a0032006-02-26 21:23:45 +0000226 pj_str_t outbound_proxy;/**< Outbound proxy. */
Benny Prijono268ca612006-02-07 12:34:11 +0000227
228
229 /* STUN: */
Benny Prijono268ca612006-02-07 12:34:11 +0000230 pj_str_t stun_srv1;
231 int stun_port1;
232 pj_str_t stun_srv2;
233 int stun_port2;
234
235
Benny Prijonoa91a0032006-02-26 21:23:45 +0000236 /* Logging: */
Benny Prijono268ca612006-02-07 12:34:11 +0000237 int log_level; /**< Logging verbosity. */
238 int app_log_level; /**< stdout log verbosity. */
239 unsigned log_decor; /**< Log decoration. */
Benny Prijonoccf95622006-02-07 18:48:01 +0000240 char *log_filename; /**< Log filename. */
Benny Prijono268ca612006-02-07 12:34:11 +0000241
Benny Prijonof3195072006-02-14 21:15:30 +0000242
Benny Prijonoa91a0032006-02-26 21:23:45 +0000243 /* PJSUA Calls: */
244 int max_calls; /**< Max nb of calls. */
245 int call_cnt; /**< Number of calls. */
246 pjsua_call calls[PJSUA_MAX_CALLS]; /** Calls array. */
Benny Prijonof3195072006-02-14 21:15:30 +0000247
248
Benny Prijono834aee32006-02-19 01:38:06 +0000249 /* SIMPLE and buddy status: */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000250 int buddy_cnt;
251 pjsua_buddy buddies[PJSUA_MAX_BUDDIES];
Benny Prijono1a01ad32006-02-07 21:13:28 +0000252};
Benny Prijono268ca612006-02-07 12:34:11 +0000253
Benny Prijono95196582006-02-09 00:13:40 +0000254
255/** PJSUA instance. */
256extern struct pjsua pjsua;
257
258
Benny Prijono268ca612006-02-07 12:34:11 +0000259
260/*****************************************************************************
Benny Prijono84126ab2006-02-09 09:30:09 +0000261 * PJSUA API (defined in pjsua_core.c).
Benny Prijono268ca612006-02-07 12:34:11 +0000262 */
263
264/**
265 * Initialize pjsua settings with default parameters.
266 */
267void pjsua_default(void);
268
269
270/**
271 * Display error message for the specified error code.
272 */
Benny Prijonobcaed6c2006-02-19 15:37:19 +0000273void pjsua_perror(const char *sender, const char *title,
274 pj_status_t status);
Benny Prijono268ca612006-02-07 12:34:11 +0000275
276
277/**
Benny Prijonoccf95622006-02-07 18:48:01 +0000278 * Initialize pjsua application. Application can call this before parsing
279 * application settings.
280 *
281 * This will initialize all libraries, create endpoint instance, and register
282 * pjsip modules. Transport will NOT be created however.
283 *
284 * Application may register module after calling this function.
Benny Prijono268ca612006-02-07 12:34:11 +0000285 */
286pj_status_t pjsua_init(void);
287
288
289/**
Benny Prijonoccf95622006-02-07 18:48:01 +0000290 * Start pjsua stack. Application calls this after pjsua settings has been
291 * configured.
292 *
293 * This will start the transport, worker threads (if any), and registration
294 * process, if registration is configured.
295 */
296pj_status_t pjsua_start(void);
297
298
299/**
Benny Prijono268ca612006-02-07 12:34:11 +0000300 * Destroy pjsua.
301 */
302pj_status_t pjsua_destroy(void);
303
304
Benny Prijonoa91a0032006-02-26 21:23:45 +0000305/**
306 * Find account for incoming request.
Benny Prijono84126ab2006-02-09 09:30:09 +0000307 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000308int pjsua_find_account_for_incoming(pjsip_rx_data *rdata);
309
310
311/**
312 * Find account for outgoing request.
313 */
314int pjsua_find_account_for_outgoing(const pj_str_t *url);
315
316
317/*****************************************************************************
318 * PJSUA Call API (defined in pjsua_call.c).
319 */
320
321/**
322 * Init pjsua call module.
323 */
324pj_status_t pjsua_call_init(void);
Benny Prijono84126ab2006-02-09 09:30:09 +0000325
Benny Prijono268ca612006-02-07 12:34:11 +0000326/**
327 * Make outgoing call.
328 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000329pj_status_t pjsua_make_call(int acc_index,
330 const char *cstr_dest_uri,
331 int *p_call_index);
Benny Prijono268ca612006-02-07 12:34:11 +0000332
333
Benny Prijono84126ab2006-02-09 09:30:09 +0000334/**
335 * Handle incoming invite request.
336 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000337pj_bool_t pjsua_call_on_incoming(pjsip_rx_data *rdata);
Benny Prijono84126ab2006-02-09 09:30:09 +0000338
339
340/**
Benny Prijonoa91a0032006-02-26 21:23:45 +0000341 * Answer call.
342 */
343void pjsua_call_answer(int call_index, int code);
344
345/**
Benny Prijono26ff9062006-02-21 23:47:00 +0000346 * Hangup call.
347 */
Benny Prijono1c2bf462006-03-05 11:54:02 +0000348void pjsua_call_hangup(int call_index);
Benny Prijono26ff9062006-02-21 23:47:00 +0000349
350
351/**
352 * Put call on-hold.
353 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000354void pjsua_call_set_hold(int call_index);
Benny Prijono26ff9062006-02-21 23:47:00 +0000355
356
357/**
358 * Send re-INVITE (to release hold).
359 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000360void pjsua_call_reinvite(int call_index);
Benny Prijono26ff9062006-02-21 23:47:00 +0000361
362
363/**
364 * Transfer call.
365 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000366void pjsua_call_xfer(int call_index, const char *dest);
Benny Prijono26ff9062006-02-21 23:47:00 +0000367
368
369/**
Benny Prijonob0808372006-03-02 21:18:58 +0000370 * Send instant messaging inside INVITE session.
371 */
372void pjsua_call_send_im(int call_index, const char *text);
373
374
375/**
376 * Send IM typing indication inside INVITE session.
377 */
378void pjsua_call_typing(int call_index, pj_bool_t is_typing);
379
380/**
Benny Prijono834aee32006-02-19 01:38:06 +0000381 * Terminate all calls.
382 */
Benny Prijono1a174142006-03-01 20:46:13 +0000383void pjsua_call_hangup_all(void);
Benny Prijono834aee32006-02-19 01:38:06 +0000384
385
Benny Prijono268ca612006-02-07 12:34:11 +0000386/*****************************************************************************
Benny Prijono84126ab2006-02-09 09:30:09 +0000387 * PJSUA Client Registration API (defined in pjsua_reg.c).
Benny Prijonoccf95622006-02-07 18:48:01 +0000388 */
389
390/**
391 * Initialize client registration session.
392 *
393 * @param app_callback Optional callback
394 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000395pj_status_t pjsua_regc_init(int acc_index);
Benny Prijonoccf95622006-02-07 18:48:01 +0000396
397/**
398 * Update registration or perform unregistration. If renew argument is zero,
399 * this will start unregistration process.
400 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000401void pjsua_regc_update(int acc_index, pj_bool_t renew);
Benny Prijonoccf95622006-02-07 18:48:01 +0000402
403
Benny Prijono834aee32006-02-19 01:38:06 +0000404
405
406/*****************************************************************************
407 * PJSUA Presence (pjsua_pres.c)
408 */
409
410/**
411 * Init presence.
412 */
413pj_status_t pjsua_pres_init();
414
415/**
416 * Refresh both presence client and server subscriptions.
417 */
Benny Prijonoa91a0032006-02-26 21:23:45 +0000418void pjsua_pres_refresh(int acc_index);
Benny Prijono834aee32006-02-19 01:38:06 +0000419
420/**
421 * Terminate all subscriptions
422 */
423void pjsua_pres_shutdown(void);
424
425/**
426 * Dump presence subscriptions.
427 */
Benny Prijono1a174142006-03-01 20:46:13 +0000428void pjsua_pres_dump(pj_bool_t detail);
Benny Prijono834aee32006-02-19 01:38:06 +0000429
430
Benny Prijonoccf95622006-02-07 18:48:01 +0000431/*****************************************************************************
Benny Prijonob0808372006-03-02 21:18:58 +0000432 * PJSUA Instant Messaging (pjsua_im.c)
433 */
434
435/**
436 * The MESSAGE method (defined in pjsua_im.c)
437 */
438extern const pjsip_method pjsip_message_method;
439
440
441/**
442 * Init IM module handler to handle incoming MESSAGE outside dialog.
443 */
444pj_status_t pjsua_im_init();
445
446
447/**
448 * Create Accept header for MESSAGE.
449 */
450pjsip_accept_hdr* pjsua_im_create_accept(pj_pool_t *pool);
451
452/**
453 * Send IM outside dialog.
454 */
455pj_status_t pjsua_im_send(int acc_index, const char *dst_uri,
456 const char *text);
457
458
459/**
460 * Send typing indication outside dialog.
461 */
462pj_status_t pjsua_im_typing(int acc_index, const char *dst_uri,
463 pj_bool_t is_typing);
464
465
466/**
467 * Private: check if we can accept the message.
468 * If not, then p_accept header will be filled with a valid
469 * Accept header.
470 */
471pj_bool_t pjsua_im_accept_pager(pjsip_rx_data *rdata,
Benny Prijonof9c668f2006-03-06 15:14:59 +0000472 pjsip_accept_hdr **p_accept_hdr);
Benny Prijonob0808372006-03-02 21:18:58 +0000473
474/**
475 * Private: process pager message.
476 * This may trigger pjsua_ui_on_pager() or pjsua_ui_on_typing().
477 */
478void pjsua_im_process_pager(int call_id, const pj_str_t *from,
479 const pj_str_t *to, pjsip_rx_data *rdata);
480
481
482/*****************************************************************************
Benny Prijono268ca612006-02-07 12:34:11 +0000483 * User Interface API.
Benny Prijono84126ab2006-02-09 09:30:09 +0000484 *
Benny Prijono268ca612006-02-07 12:34:11 +0000485 * The UI API specifies functions that will be called by pjsua upon
486 * occurence of various events.
487 */
488
489/**
490 * Notify UI when invite state has changed.
491 */
Benny Prijonob0808372006-03-02 21:18:58 +0000492void pjsua_ui_on_call_state(int call_index, pjsip_event *e);
Benny Prijono268ca612006-02-07 12:34:11 +0000493
Benny Prijonof3195072006-02-14 21:15:30 +0000494/**
495 * Notify UI when registration status has changed.
496 */
Benny Prijonob0808372006-03-02 21:18:58 +0000497void pjsua_ui_on_reg_state(int acc_index);
498
499/**
500 * Notify UI on incoming pager (i.e. MESSAGE request).
501 * Argument call_index will be -1 if MESSAGE request is not related to an
502 * existing call.
503 */
504void pjsua_ui_on_pager(int call_index, const pj_str_t *from,
505 const pj_str_t *to, const pj_str_t *txt);
506
507
508/**
509 * Notify UI about typing indication.
510 */
511void pjsua_ui_on_typing(int call_index, const pj_str_t *from,
512 const pj_str_t *to, pj_bool_t is_typing);
Benny Prijonof3195072006-02-14 21:15:30 +0000513
514
515/*****************************************************************************
516 * Utilities.
517 *
518 */
519
520/** String to describe invite session states */
521extern const char *pjsua_inv_state_names[];
522
523/**
524 * Parse arguments (pjsua_opt.c).
525 */
526pj_status_t pjsua_parse_args(int argc, char *argv[]);
527
528/**
529 * Load settings from a file.
530 */
531pj_status_t pjsua_load_settings(const char *filename);
532
533/**
Benny Prijonoa91a0032006-02-26 21:23:45 +0000534 * Dump settings.
535 */
536int pjsua_dump_settings(char *buf, pj_size_t max);
537
538/**
Benny Prijonof3195072006-02-14 21:15:30 +0000539 * Save settings to a file.
540 */
541pj_status_t pjsua_save_settings(const char *filename);
542
543
544/*
545 * Verify that valid SIP url is given.
546 * @return PJ_SUCCESS if valid.
547 */
548pj_status_t pjsua_verify_sip_url(const char *c_url);
549
550/*
551 * Dump application states.
552 */
Benny Prijono1a174142006-03-01 20:46:13 +0000553void pjsua_dump(pj_bool_t detail);
Benny Prijonof3195072006-02-14 21:15:30 +0000554
Benny Prijono268ca612006-02-07 12:34:11 +0000555
Benny Prijono1a01ad32006-02-07 21:13:28 +0000556PJ_END_DECL
557
Benny Prijonof3195072006-02-14 21:15:30 +0000558
Benny Prijono268ca612006-02-07 12:34:11 +0000559#endif /* __PJSUA_H__ */