blob: 5bfa5f043ddb15cd23db4eb0ea467f014b23555e [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#include <pjsua-lib/pjsua.h>
21#include <pjsua-lib/pjsua_internal.h>
22
23
24#define THIS_FILE "pjsua_acc.c"
25
26
27/*
28 * Get number of current accounts.
29 */
30PJ_DEF(unsigned) pjsua_acc_get_count(void)
31{
32 return pjsua_var.acc_cnt;
33}
34
35
36/*
37 * Check if the specified account ID is valid.
38 */
39PJ_DEF(pj_bool_t) pjsua_acc_is_valid(pjsua_acc_id acc_id)
40{
Benny Prijonoa1e69682007-05-11 15:14:34 +000041 return acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc) &&
Benny Prijonoeebe9af2006-06-13 22:57:13 +000042 pjsua_var.acc[acc_id].valid;
43}
44
45
46/*
Benny Prijono21b9ad92006-08-15 13:11:22 +000047 * Set default account
48 */
49PJ_DEF(pj_status_t) pjsua_acc_set_default(pjsua_acc_id acc_id)
50{
51 pjsua_var.default_acc = acc_id;
52 return PJ_SUCCESS;
53}
54
55
56/*
57 * Get default account.
58 */
59PJ_DEF(pjsua_acc_id) pjsua_acc_get_default(void)
60{
61 return pjsua_var.default_acc;
62}
63
64
65/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +000066 * Copy account configuration.
67 */
Benny Prijonobddef2c2007-10-31 13:28:08 +000068PJ_DEF(void) pjsua_acc_config_dup( pj_pool_t *pool,
69 pjsua_acc_config *dst,
70 const pjsua_acc_config *src)
Benny Prijonoeebe9af2006-06-13 22:57:13 +000071{
72 unsigned i;
73
74 pj_memcpy(dst, src, sizeof(pjsua_acc_config));
75
76 pj_strdup_with_null(pool, &dst->id, &src->id);
77 pj_strdup_with_null(pool, &dst->reg_uri, &src->reg_uri);
Benny Prijonob4a17c92006-07-10 14:40:21 +000078 pj_strdup_with_null(pool, &dst->force_contact, &src->force_contact);
Benny Prijonofe04fb52007-08-24 08:28:52 +000079 pj_strdup_with_null(pool, &dst->pidf_tuple_id, &src->pidf_tuple_id);
Benny Prijonoeebe9af2006-06-13 22:57:13 +000080
81 dst->proxy_cnt = src->proxy_cnt;
82 for (i=0; i<src->proxy_cnt; ++i)
83 pj_strdup_with_null(pool, &dst->proxy[i], &src->proxy[i]);
84
85 dst->reg_timeout = src->reg_timeout;
86 dst->cred_count = src->cred_count;
87
88 for (i=0; i<src->cred_count; ++i) {
89 pjsip_cred_dup(pool, &dst->cred_info[i], &src->cred_info[i]);
90 }
Benny Prijonobddef2c2007-10-31 13:28:08 +000091
92 dst->ka_interval = src->ka_interval;
93 pj_strdup(pool, &dst->ka_data, &src->ka_data);
Benny Prijonoeebe9af2006-06-13 22:57:13 +000094}
95
96
97/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +000098 * Initialize a new account (after configuration is set).
99 */
100static pj_status_t initialize_acc(unsigned acc_id)
101{
102 pjsua_acc_config *acc_cfg = &pjsua_var.acc[acc_id].cfg;
103 pjsua_acc *acc = &pjsua_var.acc[acc_id];
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000104 pjsip_name_addr *name_addr;
Benny Prijonob4a17c92006-07-10 14:40:21 +0000105 pjsip_sip_uri *sip_uri, *sip_reg_uri;
Benny Prijono3a5e1ab2006-08-15 20:26:34 +0000106 pj_status_t status;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000107 unsigned i;
108
109 /* Need to parse local_uri to get the elements: */
110
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000111 name_addr = (pjsip_name_addr*)
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000112 pjsip_parse_uri(acc->pool, acc_cfg->id.ptr,
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000113 acc_cfg->id.slen,
114 PJSIP_PARSE_URI_AS_NAMEADDR);
115 if (name_addr == NULL) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000116 pjsua_perror(THIS_FILE, "Invalid local URI",
117 PJSIP_EINVALIDURI);
118 return PJSIP_EINVALIDURI;
119 }
120
121 /* Local URI MUST be a SIP or SIPS: */
122
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000123 if (!PJSIP_URI_SCHEME_IS_SIP(name_addr) &&
124 !PJSIP_URI_SCHEME_IS_SIPS(name_addr))
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000125 {
126 pjsua_perror(THIS_FILE, "Invalid local URI",
127 PJSIP_EINVALIDSCHEME);
128 return PJSIP_EINVALIDSCHEME;
129 }
130
131
132 /* Get the SIP URI object: */
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000133 sip_uri = (pjsip_sip_uri*) pjsip_uri_get_uri(name_addr);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000134
Benny Prijonob4a17c92006-07-10 14:40:21 +0000135
136 /* Parse registrar URI, if any */
137 if (acc_cfg->reg_uri.slen) {
138 pjsip_uri *reg_uri;
139
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000140 reg_uri = pjsip_parse_uri(acc->pool, acc_cfg->reg_uri.ptr,
Benny Prijonob4a17c92006-07-10 14:40:21 +0000141 acc_cfg->reg_uri.slen, 0);
142 if (reg_uri == NULL) {
143 pjsua_perror(THIS_FILE, "Invalid registrar URI",
144 PJSIP_EINVALIDURI);
145 return PJSIP_EINVALIDURI;
146 }
147
148 /* Registrar URI MUST be a SIP or SIPS: */
149 if (!PJSIP_URI_SCHEME_IS_SIP(reg_uri) &&
150 !PJSIP_URI_SCHEME_IS_SIPS(reg_uri))
151 {
152 pjsua_perror(THIS_FILE, "Invalid registar URI",
153 PJSIP_EINVALIDSCHEME);
154 return PJSIP_EINVALIDSCHEME;
155 }
156
157 sip_reg_uri = (pjsip_sip_uri*) pjsip_uri_get_uri(reg_uri);
158
159 } else {
160 sip_reg_uri = NULL;
161 }
162
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000163 /* Save the user and domain part. These will be used when finding an
164 * account for incoming requests.
165 */
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000166 acc->display = name_addr->display;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000167 acc->user_part = sip_uri->user;
Benny Prijonob4a17c92006-07-10 14:40:21 +0000168 acc->srv_domain = sip_uri->host;
169 acc->srv_port = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000170
Benny Prijonob4a17c92006-07-10 14:40:21 +0000171 if (sip_reg_uri) {
172 acc->srv_port = sip_reg_uri->port;
173 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000174
175 /* Create Contact header if not present. */
Benny Prijonob4a17c92006-07-10 14:40:21 +0000176 //if (acc_cfg->contact.slen == 0) {
177 // acc_cfg->contact = acc_cfg->id;
178 //}
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000179
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000180 /* Build account route-set from outbound proxies and route set from
181 * account configuration.
182 */
183 pj_list_init(&acc->route_set);
184
185 for (i=0; i<pjsua_var.ua_cfg.outbound_proxy_cnt; ++i) {
186 pj_str_t hname = { "Route", 5};
187 pjsip_route_hdr *r;
188 pj_str_t tmp;
189
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000190 pj_strdup_with_null(acc->pool, &tmp,
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000191 &pjsua_var.ua_cfg.outbound_proxy[i]);
Benny Prijonoa1e69682007-05-11 15:14:34 +0000192 r = (pjsip_route_hdr*)
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000193 pjsip_parse_hdr(acc->pool, &hname, tmp.ptr, tmp.slen, NULL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000194 if (r == NULL) {
195 pjsua_perror(THIS_FILE, "Invalid outbound proxy URI",
196 PJSIP_EINVALIDURI);
197 return PJSIP_EINVALIDURI;
198 }
199 pj_list_push_back(&acc->route_set, r);
200 }
201
202 for (i=0; i<acc_cfg->proxy_cnt; ++i) {
203 pj_str_t hname = { "Route", 5};
204 pjsip_route_hdr *r;
205 pj_str_t tmp;
206
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000207 pj_strdup_with_null(acc->pool, &tmp, &acc_cfg->proxy[i]);
Benny Prijonoa1e69682007-05-11 15:14:34 +0000208 r = (pjsip_route_hdr*)
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000209 pjsip_parse_hdr(acc->pool, &hname, tmp.ptr, tmp.slen, NULL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000210 if (r == NULL) {
211 pjsua_perror(THIS_FILE, "Invalid URI in account route set",
212 PJ_EINVAL);
213 return PJ_EINVAL;
214 }
215 pj_list_push_back(&acc->route_set, r);
216 }
217
218
219 /* Concatenate credentials from account config and global config */
220 acc->cred_cnt = 0;
221 for (i=0; i<acc_cfg->cred_count; ++i) {
222 acc->cred[acc->cred_cnt++] = acc_cfg->cred_info[i];
223 }
224 for (i=0; i<pjsua_var.ua_cfg.cred_count &&
225 acc->cred_cnt < PJ_ARRAY_SIZE(acc->cred); ++i)
226 {
227 acc->cred[acc->cred_cnt++] = pjsua_var.ua_cfg.cred_info[i];
228 }
229
Benny Prijono3a5e1ab2006-08-15 20:26:34 +0000230 status = pjsua_pres_init_acc(acc_id);
231 if (status != PJ_SUCCESS)
232 return status;
233
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000234 /* Mark account as valid */
235 pjsua_var.acc[acc_id].valid = PJ_TRUE;
236
Benny Prijono093d3022006-09-24 00:07:11 +0000237 /* Insert account ID into account ID array, sorted by priority */
238 for (i=0; i<pjsua_var.acc_cnt; ++i) {
239 if ( pjsua_var.acc[pjsua_var.acc_ids[i]].cfg.priority <
240 pjsua_var.acc[acc_id].cfg.priority)
241 {
242 break;
243 }
244 }
245 pj_array_insert(pjsua_var.acc_ids, sizeof(pjsua_var.acc_ids[0]),
246 pjsua_var.acc_cnt, i, &acc_id);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000247
248 return PJ_SUCCESS;
249}
250
251
252/*
253 * Add a new account to pjsua.
254 */
255PJ_DEF(pj_status_t) pjsua_acc_add( const pjsua_acc_config *cfg,
256 pj_bool_t is_default,
257 pjsua_acc_id *p_acc_id)
258{
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000259 pjsua_acc *acc;
Benny Prijono91d06b62008-09-20 12:16:56 +0000260 unsigned i, id;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000261 pj_status_t status;
262
263 PJ_ASSERT_RETURN(pjsua_var.acc_cnt < PJ_ARRAY_SIZE(pjsua_var.acc),
264 PJ_ETOOMANY);
265
266 /* Must have a transport */
Benny Prijonoe93e2872006-06-28 16:46:49 +0000267 PJ_ASSERT_RETURN(pjsua_var.tpdata[0].data.ptr != NULL, PJ_EINVALIDOP);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000268
269 PJSUA_LOCK();
270
271 /* Find empty account id. */
272 for (id=0; id < PJ_ARRAY_SIZE(pjsua_var.acc); ++id) {
273 if (pjsua_var.acc[id].valid == PJ_FALSE)
274 break;
275 }
276
277 /* Expect to find a slot */
278 PJ_ASSERT_ON_FAIL( id < PJ_ARRAY_SIZE(pjsua_var.acc),
279 {PJSUA_UNLOCK(); return PJ_EBUG;});
280
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000281 acc = &pjsua_var.acc[id];
282
283 /* Create pool for this account. */
284 if (acc->pool)
285 pj_pool_reset(acc->pool);
286 else
287 acc->pool = pjsua_pool_create("acc%p", 512, 256);
288
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000289 /* Copy config */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000290 pjsua_acc_config_dup(acc->pool, &pjsua_var.acc[id].cfg, cfg);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000291
292 /* Normalize registration timeout */
293 if (pjsua_var.acc[id].cfg.reg_uri.slen &&
294 pjsua_var.acc[id].cfg.reg_timeout == 0)
295 {
296 pjsua_var.acc[id].cfg.reg_timeout = PJSUA_REG_INTERVAL;
297 }
298
Benny Prijono91d06b62008-09-20 12:16:56 +0000299 /* Check the route URI's and force loose route if required */
300 for (i=0; i<acc->cfg.proxy_cnt; ++i) {
301 status = normalize_route_uri(acc->pool, &acc->cfg.proxy[i]);
302 if (status != PJ_SUCCESS)
303 return status;
304 }
305
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000306 status = initialize_acc(id);
307 if (status != PJ_SUCCESS) {
308 pjsua_perror(THIS_FILE, "Error adding account", status);
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000309 pj_pool_release(acc->pool);
310 acc->pool = NULL;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000311 PJSUA_UNLOCK();
312 return status;
313 }
314
315 if (is_default)
316 pjsua_var.default_acc = id;
317
318 if (p_acc_id)
319 *p_acc_id = id;
320
321 pjsua_var.acc_cnt++;
322
323 PJSUA_UNLOCK();
324
325 PJ_LOG(4,(THIS_FILE, "Account %.*s added with id %d",
326 (int)cfg->id.slen, cfg->id.ptr, id));
327
328 /* If accounts has registration enabled, start registration */
329 if (pjsua_var.acc[id].cfg.reg_uri.slen)
330 pjsua_acc_set_registration(id, PJ_TRUE);
331
332
333 return PJ_SUCCESS;
334}
335
336
337/*
338 * Add local account
339 */
340PJ_DEF(pj_status_t) pjsua_acc_add_local( pjsua_transport_id tid,
341 pj_bool_t is_default,
342 pjsua_acc_id *p_acc_id)
343{
344 pjsua_acc_config cfg;
Benny Prijono62c5c5b2007-01-13 23:22:40 +0000345 pjsua_transport_data *t = &pjsua_var.tpdata[tid];
Benny Prijonod0bd4982007-12-02 15:40:52 +0000346 const char *beginquote, *endquote;
347 char transport_param[32];
Benny Prijonoe85bc412006-07-29 20:29:24 +0000348 char uri[PJSIP_MAX_URL_SIZE];
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000349
Benny Prijonoe93e2872006-06-28 16:46:49 +0000350 /* ID must be valid */
Benny Prijonoa1e69682007-05-11 15:14:34 +0000351 PJ_ASSERT_RETURN(tid>=0 && tid<(int)PJ_ARRAY_SIZE(pjsua_var.tpdata),
352 PJ_EINVAL);
Benny Prijonoe93e2872006-06-28 16:46:49 +0000353
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000354 /* Transport must be valid */
Benny Prijonoe93e2872006-06-28 16:46:49 +0000355 PJ_ASSERT_RETURN(t->data.ptr != NULL, PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000356
357 pjsua_acc_config_default(&cfg);
358
Benny Prijono093d3022006-09-24 00:07:11 +0000359 /* Lower the priority of local account */
360 --cfg.priority;
361
Benny Prijonod0bd4982007-12-02 15:40:52 +0000362 /* Enclose IPv6 address in square brackets */
363 if (t->type & PJSIP_TRANSPORT_IPV6) {
364 beginquote = "[";
365 endquote = "]";
366 } else {
367 beginquote = endquote = "";
368 }
369
370 /* Don't add transport parameter if it's UDP */
Benny Prijono4c82c1e2008-10-16 08:14:51 +0000371 if (t->type!=PJSIP_TRANSPORT_UDP && t->type!=PJSIP_TRANSPORT_UDP6) {
Benny Prijonod0bd4982007-12-02 15:40:52 +0000372 pj_ansi_snprintf(transport_param, sizeof(transport_param),
373 ";transport=%s",
374 pjsip_transport_get_type_name(t->type));
375 } else {
376 transport_param[0] = '\0';
377 }
378
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000379 /* Build URI for the account */
Benny Prijonoe85bc412006-07-29 20:29:24 +0000380 pj_ansi_snprintf(uri, PJSIP_MAX_URL_SIZE,
Benny Prijonod0bd4982007-12-02 15:40:52 +0000381 "<sip:%s%.*s%s:%d%s>",
382 beginquote,
Benny Prijonoe85bc412006-07-29 20:29:24 +0000383 (int)t->local_name.host.slen,
384 t->local_name.host.ptr,
Benny Prijonod0bd4982007-12-02 15:40:52 +0000385 endquote,
Benny Prijonoe85bc412006-07-29 20:29:24 +0000386 t->local_name.port,
Benny Prijonod0bd4982007-12-02 15:40:52 +0000387 transport_param);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000388
389 cfg.id = pj_str(uri);
390
391 return pjsua_acc_add(&cfg, is_default, p_acc_id);
392}
393
394
395/*
Benny Prijono705e7842008-07-21 18:12:51 +0000396 * Set arbitrary data to be associated with the account.
397 */
398PJ_DEF(pj_status_t) pjsua_acc_set_user_data(pjsua_acc_id acc_id,
399 void *user_data)
400{
401 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
402 PJ_EINVAL);
403 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
404
405 PJSUA_LOCK();
406
407 pjsua_var.acc[acc_id].cfg.user_data = user_data;
408
409 PJSUA_UNLOCK();
410
411 return PJ_SUCCESS;
412}
413
414
415/*
416 * Retrieve arbitrary data associated with the account.
417 */
418PJ_DEF(void*) pjsua_acc_get_user_data(pjsua_acc_id acc_id)
419{
420 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
421 NULL);
422 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, NULL);
423
424 return pjsua_var.acc[acc_id].cfg.user_data;
425}
426
427
428/*
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000429 * Delete account.
430 */
431PJ_DEF(pj_status_t) pjsua_acc_del(pjsua_acc_id acc_id)
432{
Benny Prijono093d3022006-09-24 00:07:11 +0000433 unsigned i;
434
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000435 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
436 PJ_EINVAL);
437 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
438
439 PJSUA_LOCK();
440
441 /* Delete registration */
Benny Prijono922933b2007-01-21 16:23:56 +0000442 if (pjsua_var.acc[acc_id].regc != NULL) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000443 pjsua_acc_set_registration(acc_id, PJ_FALSE);
Benny Prijonoe68e99f2007-06-06 00:28:10 +0000444 if (pjsua_var.acc[acc_id].regc) {
445 pjsip_regc_destroy(pjsua_var.acc[acc_id].regc);
446 }
Benny Prijono922933b2007-01-21 16:23:56 +0000447 pjsua_var.acc[acc_id].regc = NULL;
448 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000449
450 /* Delete server presence subscription */
451 pjsua_pres_delete_acc(acc_id);
452
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000453 /* Release account pool */
454 if (pjsua_var.acc[acc_id].pool) {
455 pj_pool_release(pjsua_var.acc[acc_id].pool);
456 pjsua_var.acc[acc_id].pool = NULL;
457 }
458
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000459 /* Invalidate */
460 pjsua_var.acc[acc_id].valid = PJ_FALSE;
Benny Prijono978de6e2008-09-15 14:56:05 +0000461 pjsua_var.acc[acc_id].contact.slen = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000462
Benny Prijono093d3022006-09-24 00:07:11 +0000463 /* Remove from array */
464 for (i=0; i<pjsua_var.acc_cnt; ++i) {
465 if (pjsua_var.acc_ids[i] == acc_id)
466 break;
467 }
468 if (i != pjsua_var.acc_cnt) {
469 pj_array_erase(pjsua_var.acc_ids, sizeof(pjsua_var.acc_ids[0]),
470 pjsua_var.acc_cnt, i);
471 --pjsua_var.acc_cnt;
472 }
473
Benny Prijono62c5c5b2007-01-13 23:22:40 +0000474 /* Leave the calls intact, as I don't think calls need to
475 * access account once it's created
476 */
477
Benny Prijonofb2b3652007-06-28 07:15:03 +0000478 /* Update default account */
479 if (pjsua_var.default_acc == acc_id)
480 pjsua_var.default_acc = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000481
482 PJSUA_UNLOCK();
483
484 PJ_LOG(4,(THIS_FILE, "Account id %d deleted", acc_id));
485
486 return PJ_SUCCESS;
487}
488
489
490/*
491 * Modify account information.
492 */
493PJ_DEF(pj_status_t) pjsua_acc_modify( pjsua_acc_id acc_id,
494 const pjsua_acc_config *cfg)
495{
496 PJ_TODO(pjsua_acc_modify);
Benny Prijonoc570f2d2006-07-18 00:33:02 +0000497 PJ_UNUSED_ARG(acc_id);
498 PJ_UNUSED_ARG(cfg);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000499 return PJ_EINVALIDOP;
500}
501
502
503/*
504 * Modify account's presence status to be advertised to remote/presence
505 * subscribers.
506 */
507PJ_DEF(pj_status_t) pjsua_acc_set_online_status( pjsua_acc_id acc_id,
508 pj_bool_t is_online)
509{
510 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
511 PJ_EINVAL);
512 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
513
514 pjsua_var.acc[acc_id].online_status = is_online;
Benny Prijono4461c7d2007-08-25 13:36:15 +0000515 pj_bzero(&pjsua_var.acc[acc_id].rpid, sizeof(pjrpid_element));
516 pjsua_pres_update_acc(acc_id, PJ_FALSE);
517 return PJ_SUCCESS;
518}
519
520
521/*
522 * Set online status with extended information
523 */
524PJ_DEF(pj_status_t) pjsua_acc_set_online_status2( pjsua_acc_id acc_id,
525 pj_bool_t is_online,
526 const pjrpid_element *pr)
527{
528 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
529 PJ_EINVAL);
530 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
531
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000532 PJSUA_LOCK();
Benny Prijono4461c7d2007-08-25 13:36:15 +0000533 pjsua_var.acc[acc_id].online_status = is_online;
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000534 pjrpid_element_dup(pjsua_var.acc[acc_id].pool, &pjsua_var.acc[acc_id].rpid, pr);
535 PJSUA_UNLOCK();
536
Benny Prijono4461c7d2007-08-25 13:36:15 +0000537 pjsua_pres_update_acc(acc_id, PJ_TRUE);
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000538 return PJ_SUCCESS;
539}
540
Benny Prijono7f630432008-09-24 16:52:41 +0000541/* Check if IP is private IP address */
542static pj_bool_t is_private_ip(const pj_str_t *addr)
543{
544 const pj_str_t private_net[] =
545 {
546 { "10.", 3 },
547 { "127.", 4 },
548 { "172.16.", 7 },
549 { "192.168.", 8 }
550 };
551 unsigned i;
552
553 for (i=0; i<PJ_ARRAY_SIZE(private_net); ++i) {
554 if (pj_strncmp(addr, &private_net[i], private_net[i].slen)==0)
555 return PJ_TRUE;
556 }
557
558 return PJ_FALSE;
559}
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000560
Benny Prijono15b02302007-09-27 14:07:07 +0000561/* Update NAT address from the REGISTER response */
562static pj_bool_t acc_check_nat_addr(pjsua_acc *acc,
563 struct pjsip_regc_cbparam *param)
564{
565 pjsip_transport *tp;
566 const pj_str_t *via_addr;
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000567 pj_pool_t *pool;
Benny Prijono15b02302007-09-27 14:07:07 +0000568 int rport;
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000569 pjsip_sip_uri *uri;
Benny Prijono15b02302007-09-27 14:07:07 +0000570 pjsip_via_hdr *via;
Benny Prijono84d24932009-06-04 15:51:39 +0000571 pj_sockaddr contact_addr;
572 pj_sockaddr recv_addr;
573 pj_status_t status;
574 pj_bool_t matched;
Benny Prijono7f630432008-09-24 16:52:41 +0000575 pj_str_t srv_ip;
Benny Prijono15b02302007-09-27 14:07:07 +0000576
577 tp = param->rdata->tp_info.transport;
578
579 /* Only update if account is configured to auto-update */
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000580 if (acc->cfg.allow_contact_rewrite == PJ_FALSE)
Benny Prijono15b02302007-09-27 14:07:07 +0000581 return PJ_FALSE;
582
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000583#if 0
584 // Always update
585 // See http://lists.pjsip.org/pipermail/pjsip_lists.pjsip.org/2008-March/002178.html
Benny Prijono15b02302007-09-27 14:07:07 +0000586
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000587 /* For UDP, only update if STUN is enabled (for now).
588 * For TCP/TLS, always check.
589 */
590 if ((tp->key.type == PJSIP_TRANSPORT_UDP &&
591 (pjsua_var.ua_cfg.stun_domain.slen != 0 ||
592 (pjsua_var.ua_cfg.stun_host.slen != 0)) ||
593 (tp->key.type == PJSIP_TRANSPORT_TCP) ||
594 (tp->key.type == PJSIP_TRANSPORT_TLS))
Benny Prijono15b02302007-09-27 14:07:07 +0000595 {
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000596 /* Yes we will check */
597 } else {
Benny Prijono15b02302007-09-27 14:07:07 +0000598 return PJ_FALSE;
599 }
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000600#endif
Benny Prijono15b02302007-09-27 14:07:07 +0000601
602 /* Get the received and rport info */
603 via = param->rdata->msg_info.via;
604 if (via->rport_param < 1) {
605 /* Remote doesn't support rport */
606 rport = via->sent_by.port;
Benny Prijono24a21852008-04-14 04:04:30 +0000607 if (rport==0) {
608 pjsip_transport_type_e tp_type;
609 tp_type = (pjsip_transport_type_e) tp->key.type;
610 rport = pjsip_transport_get_default_port_for_type(tp_type);
611 }
Benny Prijono15b02302007-09-27 14:07:07 +0000612 } else
613 rport = via->rport_param;
614
615 if (via->recvd_param.slen != 0)
616 via_addr = &via->recvd_param;
617 else
618 via_addr = &via->sent_by.host;
619
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000620 /* Compare received and rport with the URI in our registration */
621 pool = pjsua_pool_create("tmp", 512, 512);
622 uri = (pjsip_sip_uri*)
623 pjsip_parse_uri(pool, acc->contact.ptr, acc->contact.slen, 0);
624 pj_assert(uri != NULL);
Benny Prijono24a21852008-04-14 04:04:30 +0000625 uri = (pjsip_sip_uri*) pjsip_uri_get_uri(uri);
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000626
Benny Prijono24a21852008-04-14 04:04:30 +0000627 if (uri->port == 0) {
628 pjsip_transport_type_e tp_type;
629 tp_type = (pjsip_transport_type_e) tp->key.type;
630 uri->port = pjsip_transport_get_default_port_for_type(tp_type);
631 }
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000632
Benny Prijono84d24932009-06-04 15:51:39 +0000633 /* Convert IP address strings into sockaddr for comparison.
634 * (http://trac.pjsip.org/repos/ticket/863)
635 */
636 status = pj_sockaddr_parse(pj_AF_UNSPEC(), 0, &uri->host,
637 &contact_addr);
638 if (status == PJ_SUCCESS)
639 status = pj_sockaddr_parse(pj_AF_UNSPEC(), 0, via_addr,
640 &recv_addr);
641 if (status == PJ_SUCCESS) {
642 /* Compare the addresses as sockaddr according to the ticket above */
643 matched = (uri->port == rport &&
644 pj_sockaddr_cmp(&contact_addr, &recv_addr)==0);
645 } else {
646 /* Compare the addresses as string, as before */
647 matched = (uri->port == rport &&
648 pj_stricmp(&uri->host, via_addr)==0);
649 }
650
651 if (matched) {
Benny Prijono15b02302007-09-27 14:07:07 +0000652 /* Address doesn't change */
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000653 pj_pool_release(pool);
Benny Prijono15b02302007-09-27 14:07:07 +0000654 return PJ_FALSE;
655 }
656
Benny Prijono7f630432008-09-24 16:52:41 +0000657 /* Get server IP */
658 srv_ip = pj_str(param->rdata->pkt_info.src_name);
659
Benny Prijono15b02302007-09-27 14:07:07 +0000660 /* At this point we've detected that the address as seen by registrar.
661 * has changed.
662 */
Benny Prijono7f630432008-09-24 16:52:41 +0000663
664 /* Do not switch if both Contact and server's IP address are
665 * public but response contains private IP. A NAT in the middle
Benny Prijono44e42e12009-06-03 08:37:24 +0000666 * might have messed up with the SIP packets. See:
667 * http://trac.pjsip.org/repos/ticket/643
Benny Prijono247921b2008-09-26 22:06:11 +0000668 *
669 * This exception can be disabled by setting allow_contact_rewrite
670 * to 2. In this case, the switch will always be done whenever there
671 * is difference in the IP address in the response.
Benny Prijono7f630432008-09-24 16:52:41 +0000672 */
Benny Prijono247921b2008-09-26 22:06:11 +0000673 if (acc->cfg.allow_contact_rewrite != 2 && !is_private_ip(&uri->host) &&
674 !is_private_ip(&srv_ip) && is_private_ip(via_addr))
Benny Prijono7f630432008-09-24 16:52:41 +0000675 {
676 /* Don't switch */
677 pj_pool_release(pool);
678 return PJ_FALSE;
679 }
680
Benny Prijono15b02302007-09-27 14:07:07 +0000681 PJ_LOG(3,(THIS_FILE, "IP address change detected for account %d "
682 "(%.*s:%d --> %.*s:%d). Updating registration..",
683 acc->index,
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000684 (int)uri->host.slen,
685 uri->host.ptr,
686 uri->port,
Benny Prijono15b02302007-09-27 14:07:07 +0000687 (int)via_addr->slen,
688 via_addr->ptr,
689 rport));
690
691 /* Unregister current contact */
692 pjsua_acc_set_registration(acc->index, PJ_FALSE);
693 if (acc->regc != NULL) {
694 pjsip_regc_destroy(acc->regc);
695 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +0000696 acc->contact.slen = 0;
Benny Prijono15b02302007-09-27 14:07:07 +0000697 }
698
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000699 /* Update account's Contact header */
700 {
701 char *tmp;
Benny Prijono8972bf02009-04-05 18:30:45 +0000702 const char *beginquote, *endquote;
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000703 int len;
704
Benny Prijono8972bf02009-04-05 18:30:45 +0000705 /* Enclose IPv6 address in square brackets */
706 if (tp->key.type & PJSIP_TRANSPORT_IPV6) {
707 beginquote = "[";
708 endquote = "]";
709 } else {
710 beginquote = endquote = "";
711 }
712
Benny Prijono24a21852008-04-14 04:04:30 +0000713 tmp = (char*) pj_pool_alloc(pool, PJSIP_MAX_URL_SIZE);
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000714 len = pj_ansi_snprintf(tmp, PJSIP_MAX_URL_SIZE,
Benny Prijono8972bf02009-04-05 18:30:45 +0000715 "<sip:%.*s%s%s%.*s%s:%d;transport=%s%.*s>",
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000716 (int)acc->user_part.slen,
717 acc->user_part.ptr,
Benny Prijono83088f32008-04-22 18:33:55 +0000718 (acc->user_part.slen? "@" : ""),
Benny Prijono8972bf02009-04-05 18:30:45 +0000719 beginquote,
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000720 (int)via_addr->slen,
721 via_addr->ptr,
Benny Prijono8972bf02009-04-05 18:30:45 +0000722 endquote,
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000723 rport,
Benny Prijono30fe4852008-12-10 16:54:16 +0000724 tp->type_name,
725 (int)acc->cfg.contact_params.slen,
726 acc->cfg.contact_params.ptr);
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000727 if (len < 1) {
728 PJ_LOG(1,(THIS_FILE, "URI too long"));
729 pj_pool_release(pool);
730 return PJ_FALSE;
731 }
Benny Prijono3d9b4b62008-07-14 17:55:40 +0000732 pj_strdup2_with_null(acc->pool, &acc->contact, tmp);
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000733 }
734
735 /* For UDP transport, if STUN is enabled then update the transport's
736 * published name as well.
737 */
738 if (tp->key.type==PJSIP_TRANSPORT_UDP &&
739 (pjsua_var.ua_cfg.stun_domain.slen != 0 ||
740 pjsua_var.ua_cfg.stun_host.slen != 0))
741 {
742 pj_strdup_with_null(tp->pool, &tp->local_name.host, via_addr);
743 tp->local_name.port = rport;
744 }
Benny Prijono15b02302007-09-27 14:07:07 +0000745
746 /* Perform new registration */
747 pjsua_acc_set_registration(acc->index, PJ_TRUE);
748
Benny Prijonoe8554ef2008-03-22 09:33:52 +0000749 pj_pool_release(pool);
750
Benny Prijono15b02302007-09-27 14:07:07 +0000751 return PJ_TRUE;
752}
753
Benny Prijonoa2a2d412007-10-18 05:54:02 +0000754/* Check and update Service-Route header */
755void update_service_route(pjsua_acc *acc, pjsip_rx_data *rdata)
756{
757 pjsip_generic_string_hdr *hsr = NULL;
758 pjsip_route_hdr *hr, *h;
759 const pj_str_t HNAME = { "Service-Route", 13 };
760 const pj_str_t HROUTE = { "Route", 5 };
761 pjsip_uri *uri[PJSUA_ACC_MAX_PROXIES];
Benny Prijonof020ab22007-10-18 15:28:33 +0000762 unsigned i, uri_cnt = 0, rcnt;
Benny Prijonoa2a2d412007-10-18 05:54:02 +0000763
764 /* Find and parse Service-Route headers */
765 for (;;) {
766 char saved;
767 int parsed_len;
768
769 /* Find Service-Route header */
770 hsr = (pjsip_generic_string_hdr*)
771 pjsip_msg_find_hdr_by_name(rdata->msg_info.msg, &HNAME, hsr);
772 if (!hsr)
773 break;
774
775 /* Parse as Route header since the syntax is similar. This may
776 * return more than one headers.
777 */
778 saved = hsr->hvalue.ptr[hsr->hvalue.slen];
779 hsr->hvalue.ptr[hsr->hvalue.slen] = '\0';
780 hr = (pjsip_route_hdr*)
781 pjsip_parse_hdr(rdata->tp_info.pool, &HROUTE, hsr->hvalue.ptr,
782 hsr->hvalue.slen, &parsed_len);
783 hsr->hvalue.ptr[hsr->hvalue.slen] = saved;
784
785 if (hr == NULL) {
786 /* Error */
787 PJ_LOG(1,(THIS_FILE, "Error parsing Service-Route header"));
788 return;
789 }
790
791 /* Save each URI in the result */
792 h = hr;
793 do {
794 if (!PJSIP_URI_SCHEME_IS_SIP(h->name_addr.uri) &&
795 !PJSIP_URI_SCHEME_IS_SIPS(h->name_addr.uri))
796 {
797 PJ_LOG(1,(THIS_FILE,"Error: non SIP URI in Service-Route: %.*s",
798 (int)hsr->hvalue.slen, hsr->hvalue.ptr));
799 return;
800 }
801
802 uri[uri_cnt++] = h->name_addr.uri;
803 h = h->next;
804 } while (h != hr && uri_cnt != PJ_ARRAY_SIZE(uri));
805
806 if (h != hr) {
807 PJ_LOG(1,(THIS_FILE, "Error: too many Service-Route headers"));
808 return;
809 }
810
811 /* Prepare to find next Service-Route header */
812 hsr = hsr->next;
813 if ((void*)hsr == (void*)&rdata->msg_info.msg->hdr)
814 break;
815 }
816
817 if (uri_cnt == 0)
818 return;
819
820 /*
821 * Update account's route set
822 */
823
824 /* First remove all routes which are not the outbound proxies */
Benny Prijonof020ab22007-10-18 15:28:33 +0000825 rcnt = pj_list_size(&acc->route_set);
Benny Prijono2568c742007-11-03 09:29:52 +0000826 if (rcnt != pjsua_var.ua_cfg.outbound_proxy_cnt + acc->cfg.proxy_cnt) {
827 for (i=pjsua_var.ua_cfg.outbound_proxy_cnt + acc->cfg.proxy_cnt,
828 hr=acc->route_set.prev;
Benny Prijonof020ab22007-10-18 15:28:33 +0000829 i<rcnt;
830 ++i)
831 {
832 pjsip_route_hdr *prev = hr->prev;
833 pj_list_erase(hr);
834 hr = prev;
835 }
836 }
Benny Prijonoa2a2d412007-10-18 05:54:02 +0000837
838 /* Then append the Service-Route URIs */
839 for (i=0; i<uri_cnt; ++i) {
Benny Prijonoc91ed8d2008-07-13 12:24:55 +0000840 hr = pjsip_route_hdr_create(acc->pool);
841 hr->name_addr.uri = (pjsip_uri*)pjsip_uri_clone(acc->pool, uri[i]);
Benny Prijonoa2a2d412007-10-18 05:54:02 +0000842 pj_list_push_back(&acc->route_set, hr);
843 }
844
845 /* Done */
846
847 PJ_LOG(4,(THIS_FILE, "Service-Route updated for acc %d with %d URI(s)",
848 acc->index, uri_cnt));
849}
850
Benny Prijonobddef2c2007-10-31 13:28:08 +0000851
852/* Keep alive timer callback */
853static void keep_alive_timer_cb(pj_timer_heap_t *th, pj_timer_entry *te)
854{
855 pjsua_acc *acc;
856 pjsip_tpselector tp_sel;
857 pj_time_val delay;
Benny Prijonodb4eb812007-12-09 05:30:47 +0000858 char addrtxt[PJ_INET6_ADDRSTRLEN];
Benny Prijonobddef2c2007-10-31 13:28:08 +0000859 pj_status_t status;
860
861 PJ_UNUSED_ARG(th);
862
863 PJSUA_LOCK();
864
865 te->id = PJ_FALSE;
866
867 acc = (pjsua_acc*) te->user_data;
868
869 /* Select the transport to send the packet */
870 pj_bzero(&tp_sel, sizeof(tp_sel));
871 tp_sel.type = PJSIP_TPSELECTOR_TRANSPORT;
872 tp_sel.u.transport = acc->ka_transport;
873
874 PJ_LOG(5,(THIS_FILE,
Benny Prijonodb4eb812007-12-09 05:30:47 +0000875 "Sending %d bytes keep-alive packet for acc %d to %s",
Benny Prijonobddef2c2007-10-31 13:28:08 +0000876 acc->cfg.ka_data.slen, acc->index,
Benny Prijonodb4eb812007-12-09 05:30:47 +0000877 pj_sockaddr_print(&acc->ka_target, addrtxt, sizeof(addrtxt),3)));
Benny Prijonobddef2c2007-10-31 13:28:08 +0000878
879 /* Send raw packet */
880 status = pjsip_tpmgr_send_raw(pjsip_endpt_get_tpmgr(pjsua_var.endpt),
881 PJSIP_TRANSPORT_UDP, &tp_sel,
882 NULL, acc->cfg.ka_data.ptr,
883 acc->cfg.ka_data.slen,
884 &acc->ka_target, acc->ka_target_len,
885 NULL, NULL);
886
887 if (status != PJ_SUCCESS && status != PJ_EPENDING) {
888 pjsua_perror(THIS_FILE, "Error sending keep-alive packet", status);
889 }
890
891 /* Reschedule next timer */
892 delay.sec = acc->cfg.ka_interval;
893 delay.msec = 0;
894 status = pjsip_endpt_schedule_timer(pjsua_var.endpt, te, &delay);
895 if (status == PJ_SUCCESS) {
896 te->id = PJ_TRUE;
897 } else {
898 pjsua_perror(THIS_FILE, "Error starting keep-alive timer", status);
899 }
900
901 PJSUA_UNLOCK();
902}
903
904
905/* Update keep-alive for the account */
906static void update_keep_alive(pjsua_acc *acc, pj_bool_t start,
907 struct pjsip_regc_cbparam *param)
908{
909 /* In all cases, stop keep-alive timer if it's running. */
910 if (acc->ka_timer.id) {
911 pjsip_endpt_cancel_timer(pjsua_var.endpt, &acc->ka_timer);
912 acc->ka_timer.id = PJ_FALSE;
913
914 pjsip_transport_dec_ref(acc->ka_transport);
915 acc->ka_transport = NULL;
916 }
917
918 if (start) {
919 pj_time_val delay;
920 pj_status_t status;
921
922 /* Only do keep-alive if:
Benny Prijonobddef2c2007-10-31 13:28:08 +0000923 * - ka_interval is not zero in the account, and
924 * - transport is UDP.
Benny Prijono7fff9f92008-04-04 10:50:21 +0000925 *
926 * Previously we only enabled keep-alive when STUN is enabled, since
927 * we thought that keep-alive is only needed in Internet situation.
928 * But it has been discovered that Windows Firewall on WinXP also
929 * needs to be kept-alive, otherwise incoming packets will be dropped.
930 * So because of this, now keep-alive is always enabled for UDP,
931 * regardless of whether STUN is enabled or not.
932 *
933 * Note that this applies only for UDP. For TCP/TLS, the keep-alive
934 * is done by the transport layer.
Benny Prijonobddef2c2007-10-31 13:28:08 +0000935 */
Benny Prijono7fff9f92008-04-04 10:50:21 +0000936 if (/*pjsua_var.stun_srv.ipv4.sin_family == 0 ||*/
Benny Prijonobddef2c2007-10-31 13:28:08 +0000937 acc->cfg.ka_interval == 0 ||
938 param->rdata->tp_info.transport->key.type != PJSIP_TRANSPORT_UDP)
939 {
940 /* Keep alive is not necessary */
941 return;
942 }
943
944 /* Save transport and destination address. */
945 acc->ka_transport = param->rdata->tp_info.transport;
946 pjsip_transport_add_ref(acc->ka_transport);
947 pj_memcpy(&acc->ka_target, &param->rdata->pkt_info.src_addr,
948 param->rdata->pkt_info.src_addr_len);
949 acc->ka_target_len = param->rdata->pkt_info.src_addr_len;
950
951 /* Setup and start the timer */
952 acc->ka_timer.cb = &keep_alive_timer_cb;
953 acc->ka_timer.user_data = (void*)acc;
954
955 delay.sec = acc->cfg.ka_interval;
956 delay.msec = 0;
957 status = pjsip_endpt_schedule_timer(pjsua_var.endpt, &acc->ka_timer,
958 &delay);
959 if (status == PJ_SUCCESS) {
960 acc->ka_timer.id = PJ_TRUE;
961 PJ_LOG(4,(THIS_FILE, "Keep-alive timer started for acc %d, "
962 "destination:%s:%d, interval:%ds",
963 acc->index,
964 param->rdata->pkt_info.src_name,
965 param->rdata->pkt_info.src_port,
966 acc->cfg.ka_interval));
967 } else {
968 acc->ka_timer.id = PJ_FALSE;
969 pjsip_transport_dec_ref(acc->ka_transport);
970 acc->ka_transport = NULL;
971 pjsua_perror(THIS_FILE, "Error starting keep-alive timer", status);
972 }
973 }
974}
975
976
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000977/*
978 * This callback is called by pjsip_regc when outgoing register
979 * request has completed.
980 */
981static void regc_cb(struct pjsip_regc_cbparam *param)
982{
983
Benny Prijonoa1e69682007-05-11 15:14:34 +0000984 pjsua_acc *acc = (pjsua_acc*) param->token;
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000985
Benny Prijono15b02302007-09-27 14:07:07 +0000986 if (param->regc != acc->regc)
987 return;
988
Benny Prijonoeebe9af2006-06-13 22:57:13 +0000989 PJSUA_LOCK();
990
991 /*
992 * Print registration status.
993 */
994 if (param->status!=PJ_SUCCESS) {
995 pjsua_perror(THIS_FILE, "SIP registration error",
996 param->status);
997 pjsip_regc_destroy(acc->regc);
998 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +0000999 acc->contact.slen = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001000
Benny Prijonobddef2c2007-10-31 13:28:08 +00001001 /* Stop keep-alive timer if any. */
1002 update_keep_alive(acc, PJ_FALSE, NULL);
1003
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001004 } else if (param->code < 0 || param->code >= 300) {
1005 PJ_LOG(2, (THIS_FILE, "SIP registration failed, status=%d (%.*s)",
1006 param->code,
1007 (int)param->reason.slen, param->reason.ptr));
1008 pjsip_regc_destroy(acc->regc);
1009 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001010 acc->contact.slen = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001011
Benny Prijonobddef2c2007-10-31 13:28:08 +00001012 /* Stop keep-alive timer if any. */
1013 update_keep_alive(acc, PJ_FALSE, NULL);
1014
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001015 } else if (PJSIP_IS_STATUS_IN_CLASS(param->code, 200)) {
1016
1017 if (param->expiration < 1) {
1018 pjsip_regc_destroy(acc->regc);
1019 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001020 acc->contact.slen = 0;
Benny Prijonobddef2c2007-10-31 13:28:08 +00001021
1022 /* Stop keep-alive timer if any. */
1023 update_keep_alive(acc, PJ_FALSE, NULL);
1024
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001025 PJ_LOG(3,(THIS_FILE, "%s: unregistration success",
1026 pjsua_var.acc[acc->index].cfg.id.ptr));
1027 } else {
Benny Prijono15b02302007-09-27 14:07:07 +00001028 /* Check NAT bound address */
1029 if (acc_check_nat_addr(acc, param)) {
1030 /* Update address, don't notify application yet */
1031 PJSUA_UNLOCK();
1032 return;
1033 }
1034
Benny Prijonoa2a2d412007-10-18 05:54:02 +00001035 /* Check and update Service-Route header */
1036 update_service_route(acc, param->rdata);
1037
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001038 PJ_LOG(3, (THIS_FILE,
1039 "%s: registration success, status=%d (%.*s), "
1040 "will re-register in %d seconds",
1041 pjsua_var.acc[acc->index].cfg.id.ptr,
1042 param->code,
1043 (int)param->reason.slen, param->reason.ptr,
1044 param->expiration));
Benny Prijono8b6834f2007-02-24 13:29:22 +00001045
Benny Prijonobddef2c2007-10-31 13:28:08 +00001046 /* Start keep-alive timer if necessary. */
1047 update_keep_alive(acc, PJ_TRUE, param);
1048
Benny Prijono8b6834f2007-02-24 13:29:22 +00001049 /* Send initial PUBLISH if it is enabled */
1050 if (acc->cfg.publish_enabled && acc->publish_sess==NULL)
1051 pjsua_pres_init_publish_acc(acc->index);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001052 }
1053
1054 } else {
1055 PJ_LOG(4, (THIS_FILE, "SIP registration updated status=%d", param->code));
1056 }
1057
1058 acc->reg_last_err = param->status;
1059 acc->reg_last_code = param->code;
1060
1061 if (pjsua_var.ua_cfg.cb.on_reg_state)
1062 (*pjsua_var.ua_cfg.cb.on_reg_state)(acc->index);
1063
1064 PJSUA_UNLOCK();
1065}
1066
1067
1068/*
1069 * Initialize client registration.
1070 */
1071static pj_status_t pjsua_regc_init(int acc_id)
1072{
1073 pjsua_acc *acc;
Benny Prijonoe1a8bad2006-10-13 17:45:38 +00001074 pj_pool_t *pool;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001075 pj_status_t status;
1076
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001077 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001078 acc = &pjsua_var.acc[acc_id];
1079
1080 if (acc->cfg.reg_uri.slen == 0) {
1081 PJ_LOG(3,(THIS_FILE, "Registrar URI is not specified"));
1082 return PJ_SUCCESS;
1083 }
1084
Benny Prijonoe1a8bad2006-10-13 17:45:38 +00001085 /* Destroy existing session, if any */
1086 if (acc->regc) {
1087 pjsip_regc_destroy(acc->regc);
1088 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001089 acc->contact.slen = 0;
Benny Prijonoe1a8bad2006-10-13 17:45:38 +00001090 }
1091
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001092 /* initialize SIP registration if registrar is configured */
1093
1094 status = pjsip_regc_create( pjsua_var.endpt,
1095 acc, &regc_cb, &acc->regc);
1096
1097 if (status != PJ_SUCCESS) {
1098 pjsua_perror(THIS_FILE, "Unable to create client registration",
1099 status);
1100 return status;
1101 }
1102
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001103 pool = pjsua_pool_create("tmpregc", 512, 512);
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001104
1105 if (acc->contact.slen == 0) {
1106 pj_str_t tmp_contact;
1107
1108 status = pjsua_acc_create_uac_contact( pool, &tmp_contact,
1109 acc_id, &acc->cfg.reg_uri);
1110 if (status != PJ_SUCCESS) {
1111 pjsua_perror(THIS_FILE, "Unable to generate suitable Contact header"
1112 " for registration",
1113 status);
1114 pjsip_regc_destroy(acc->regc);
1115 pj_pool_release(pool);
1116 acc->regc = NULL;
1117 return status;
1118 }
1119
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001120 pj_strdup_with_null(acc->pool, &acc->contact, &tmp_contact);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001121 }
1122
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001123 status = pjsip_regc_init( acc->regc,
1124 &acc->cfg.reg_uri,
1125 &acc->cfg.id,
1126 &acc->cfg.id,
Benny Prijonoe8554ef2008-03-22 09:33:52 +00001127 1, &acc->contact,
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001128 acc->cfg.reg_timeout);
1129 if (status != PJ_SUCCESS) {
1130 pjsua_perror(THIS_FILE,
1131 "Client registration initialization error",
1132 status);
Benny Prijono19b29372007-12-05 04:08:40 +00001133 pjsip_regc_destroy(acc->regc);
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001134 pj_pool_release(pool);
Benny Prijono19b29372007-12-05 04:08:40 +00001135 acc->regc = NULL;
Benny Prijonoddaaf6a2008-04-15 10:37:19 +00001136 acc->contact.slen = 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001137 return status;
1138 }
1139
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001140 /* If account is locked to specific transport, then set transport to
1141 * the client registration.
1142 */
1143 if (pjsua_var.acc[acc_id].cfg.transport_id != PJSUA_INVALID_ID) {
1144 pjsip_tpselector tp_sel;
1145
1146 pjsua_init_tpselector(pjsua_var.acc[acc_id].cfg.transport_id, &tp_sel);
1147 pjsip_regc_set_transport(acc->regc, &tp_sel);
1148 }
1149
1150
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001151 /* Set credentials
1152 */
1153 if (acc->cred_cnt) {
1154 pjsip_regc_set_credentials( acc->regc, acc->cred_cnt, acc->cred);
1155 }
1156
Benny Prijono48ab2b72007-11-08 09:24:30 +00001157 /* Set authentication preference */
1158 pjsip_regc_set_prefs(acc->regc, &acc->cfg.auth_pref);
1159
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001160 /* Set route-set
1161 */
1162 if (!pj_list_empty(&acc->route_set)) {
1163 pjsip_regc_set_route_set( acc->regc, &acc->route_set );
1164 }
1165
Benny Prijono8fc6de02006-11-11 21:25:55 +00001166 /* Add other request headers. */
1167 if (pjsua_var.ua_cfg.user_agent.slen) {
1168 pjsip_hdr hdr_list;
1169 const pj_str_t STR_USER_AGENT = { "User-Agent", 10 };
1170 pjsip_generic_string_hdr *h;
1171
Benny Prijono8fc6de02006-11-11 21:25:55 +00001172 pj_list_init(&hdr_list);
1173
1174 h = pjsip_generic_string_hdr_create(pool, &STR_USER_AGENT,
1175 &pjsua_var.ua_cfg.user_agent);
1176 pj_list_push_back(&hdr_list, (pjsip_hdr*)h);
1177
1178 pjsip_regc_add_headers(acc->regc, &hdr_list);
1179 }
1180
Benny Prijono38fb3ea2008-01-02 08:27:03 +00001181 pj_pool_release(pool);
1182
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001183 return PJ_SUCCESS;
1184}
1185
1186
1187/*
1188 * Update registration or perform unregistration.
1189 */
1190PJ_DEF(pj_status_t) pjsua_acc_set_registration( pjsua_acc_id acc_id,
1191 pj_bool_t renew)
1192{
1193 pj_status_t status = 0;
1194 pjsip_tx_data *tdata = 0;
1195
1196 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
1197 PJ_EINVAL);
1198 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
1199
1200 PJSUA_LOCK();
1201
1202 if (renew) {
1203 if (pjsua_var.acc[acc_id].regc == NULL) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001204 status = pjsua_regc_init(acc_id);
1205 if (status != PJ_SUCCESS) {
1206 pjsua_perror(THIS_FILE, "Unable to create registration",
1207 status);
1208 goto on_return;
1209 }
1210 }
1211 if (!pjsua_var.acc[acc_id].regc) {
1212 status = PJ_EINVALIDOP;
1213 goto on_return;
1214 }
1215
1216 status = pjsip_regc_register(pjsua_var.acc[acc_id].regc, 1,
1217 &tdata);
1218
Benny Prijono28f673a2007-10-15 07:04:59 +00001219 if (0 && status == PJ_SUCCESS && pjsua_var.acc[acc_id].cred_cnt) {
1220 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1221 pjsip_authorization_hdr *h;
1222 char *uri;
1223 int d;
1224
1225 uri = (char*) pj_pool_alloc(tdata->pool, acc->cfg.reg_uri.slen+10);
1226 d = pjsip_uri_print(PJSIP_URI_IN_REQ_URI, tdata->msg->line.req.uri,
1227 uri, acc->cfg.reg_uri.slen+10);
1228 pj_assert(d > 0);
1229
1230 h = pjsip_authorization_hdr_create(tdata->pool);
1231 h->scheme = pj_str("Digest");
1232 h->credential.digest.username = acc->cred[0].username;
1233 h->credential.digest.realm = acc->srv_domain;
1234 h->credential.digest.uri = pj_str(uri);
1235 h->credential.digest.algorithm = pj_str("md5");
1236
1237 pjsip_msg_add_hdr(tdata->msg, (pjsip_hdr*)h);
1238 }
1239
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001240 } else {
1241 if (pjsua_var.acc[acc_id].regc == NULL) {
1242 PJ_LOG(3,(THIS_FILE, "Currently not registered"));
1243 status = PJ_EINVALIDOP;
1244 goto on_return;
1245 }
1246 status = pjsip_regc_unregister(pjsua_var.acc[acc_id].regc, &tdata);
1247 }
1248
Benny Prijono56315612006-07-18 14:39:40 +00001249 if (status == PJ_SUCCESS) {
Benny Prijono8fc6de02006-11-11 21:25:55 +00001250 //pjsua_process_msg_data(tdata, NULL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001251 status = pjsip_regc_send( pjsua_var.acc[acc_id].regc, tdata );
Benny Prijono56315612006-07-18 14:39:40 +00001252 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001253
1254 if (status != PJ_SUCCESS) {
1255 pjsua_perror(THIS_FILE, "Unable to create/send REGISTER",
1256 status);
1257 } else {
1258 PJ_LOG(3,(THIS_FILE, "%s sent",
1259 (renew? "Registration" : "Unregistration")));
1260 }
1261
1262on_return:
1263 PJSUA_UNLOCK();
1264 return status;
1265}
1266
1267
1268/*
1269 * Get account information.
1270 */
1271PJ_DEF(pj_status_t) pjsua_acc_get_info( pjsua_acc_id acc_id,
1272 pjsua_acc_info *info)
1273{
1274 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1275 pjsua_acc_config *acc_cfg = &pjsua_var.acc[acc_id].cfg;
1276
1277 PJ_ASSERT_RETURN(info != NULL, PJ_EINVAL);
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001278 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001279
Benny Prijonoac623b32006-07-03 15:19:31 +00001280 pj_bzero(info, sizeof(pjsua_acc_info));
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001281
1282 PJ_ASSERT_RETURN(acc_id>=0 && acc_id<(int)PJ_ARRAY_SIZE(pjsua_var.acc),
1283 PJ_EINVAL);
1284 PJ_ASSERT_RETURN(pjsua_var.acc[acc_id].valid, PJ_EINVALIDOP);
1285
1286 PJSUA_LOCK();
1287
1288 if (pjsua_var.acc[acc_id].valid == PJ_FALSE) {
1289 PJSUA_UNLOCK();
1290 return PJ_EINVALIDOP;
1291 }
1292
1293 info->id = acc_id;
1294 info->is_default = (pjsua_var.default_acc == acc_id);
1295 info->acc_uri = acc_cfg->id;
1296 info->has_registration = (acc->cfg.reg_uri.slen > 0);
1297 info->online_status = acc->online_status;
Benny Prijono4461c7d2007-08-25 13:36:15 +00001298 pj_memcpy(&info->rpid, &acc->rpid, sizeof(pjrpid_element));
1299 if (info->rpid.note.slen)
1300 info->online_status_text = info->rpid.note;
1301 else if (info->online_status)
1302 info->online_status_text = pj_str("Online");
1303 else
1304 info->online_status_text = pj_str("Offline");
1305
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001306 if (acc->reg_last_err) {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001307 info->status = (pjsip_status_code) acc->reg_last_err;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001308 pj_strerror(acc->reg_last_err, info->buf_, sizeof(info->buf_));
1309 info->status_text = pj_str(info->buf_);
1310 } else if (acc->reg_last_code) {
Benny Prijono6f979412006-06-15 12:25:46 +00001311 if (info->has_registration) {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001312 info->status = (pjsip_status_code) acc->reg_last_code;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001313 info->status_text = *pjsip_get_status_text(acc->reg_last_code);
1314 } else {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001315 info->status = (pjsip_status_code) 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001316 info->status_text = pj_str("not registered");
1317 }
1318 } else if (acc->cfg.reg_uri.slen) {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001319 info->status = PJSIP_SC_TRYING;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001320 info->status_text = pj_str("In Progress");
1321 } else {
Benny Prijonoba5926a2007-05-02 11:29:37 +00001322 info->status = (pjsip_status_code) 0;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001323 info->status_text = pj_str("does not register");
1324 }
1325
1326 if (acc->regc) {
1327 pjsip_regc_info regc_info;
1328 pjsip_regc_get_info(acc->regc, &regc_info);
1329 info->expires = regc_info.next_reg;
1330 } else {
1331 info->expires = -1;
1332 }
1333
1334 PJSUA_UNLOCK();
1335
1336 return PJ_SUCCESS;
1337
1338}
1339
1340
1341/*
1342 * Enum accounts all account ids.
1343 */
1344PJ_DEF(pj_status_t) pjsua_enum_accs(pjsua_acc_id ids[],
1345 unsigned *count )
1346{
1347 unsigned i, c;
1348
1349 PJ_ASSERT_RETURN(ids && *count, PJ_EINVAL);
1350
1351 PJSUA_LOCK();
1352
1353 for (i=0, c=0; c<*count && i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) {
1354 if (!pjsua_var.acc[i].valid)
1355 continue;
1356 ids[c] = i;
1357 ++c;
1358 }
1359
1360 *count = c;
1361
1362 PJSUA_UNLOCK();
1363
1364 return PJ_SUCCESS;
1365}
1366
1367
1368/*
1369 * Enum accounts info.
1370 */
1371PJ_DEF(pj_status_t) pjsua_acc_enum_info( pjsua_acc_info info[],
1372 unsigned *count )
1373{
1374 unsigned i, c;
1375
1376 PJ_ASSERT_RETURN(info && *count, PJ_EINVAL);
1377
1378 PJSUA_LOCK();
1379
1380 for (i=0, c=0; c<*count && i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) {
1381 if (!pjsua_var.acc[i].valid)
1382 continue;
1383
1384 pjsua_acc_get_info(i, &info[c]);
1385 ++c;
1386 }
1387
1388 *count = c;
1389
1390 PJSUA_UNLOCK();
1391
1392 return PJ_SUCCESS;
1393}
1394
1395
1396/*
1397 * This is an internal function to find the most appropriate account to
1398 * used to reach to the specified URL.
1399 */
1400PJ_DEF(pjsua_acc_id) pjsua_acc_find_for_outgoing(const pj_str_t *url)
1401{
1402 pj_str_t tmp;
1403 pjsip_uri *uri;
1404 pjsip_sip_uri *sip_uri;
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001405 pj_pool_t *tmp_pool;
Benny Prijono093d3022006-09-24 00:07:11 +00001406 unsigned i;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001407
1408 PJSUA_LOCK();
1409
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001410 tmp_pool = pjsua_pool_create("tmpacc10", 256, 256);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001411
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001412 pj_strdup_with_null(tmp_pool, &tmp, url);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001413
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001414 uri = pjsip_parse_uri(tmp_pool, tmp.ptr, tmp.slen, 0);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001415 if (!uri) {
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001416 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001417 PJSUA_UNLOCK();
1418 return pjsua_var.default_acc;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001419 }
1420
1421 if (!PJSIP_URI_SCHEME_IS_SIP(uri) &&
1422 !PJSIP_URI_SCHEME_IS_SIPS(uri))
1423 {
1424 /* Return the first account with proxy */
Benny Prijono093d3022006-09-24 00:07:11 +00001425 for (i=0; i<PJ_ARRAY_SIZE(pjsua_var.acc); ++i) {
1426 if (!pjsua_var.acc[i].valid)
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001427 continue;
Benny Prijono093d3022006-09-24 00:07:11 +00001428 if (!pj_list_empty(&pjsua_var.acc[i].route_set))
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001429 break;
1430 }
1431
Benny Prijono093d3022006-09-24 00:07:11 +00001432 if (i != PJ_ARRAY_SIZE(pjsua_var.acc)) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001433 /* Found rather matching account */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001434 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001435 PJSUA_UNLOCK();
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001436 return i;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001437 }
1438
1439 /* Not found, use default account */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001440 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001441 PJSUA_UNLOCK();
1442 return pjsua_var.default_acc;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001443 }
1444
Benny Prijonoa1e69682007-05-11 15:14:34 +00001445 sip_uri = (pjsip_sip_uri*) pjsip_uri_get_uri(uri);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001446
Benny Prijonob4a17c92006-07-10 14:40:21 +00001447 /* Find matching domain AND port */
Benny Prijono093d3022006-09-24 00:07:11 +00001448 for (i=0; i<pjsua_var.acc_cnt; ++i) {
1449 unsigned acc_id = pjsua_var.acc_ids[i];
1450 if (pj_stricmp(&pjsua_var.acc[acc_id].srv_domain, &sip_uri->host)==0 &&
1451 pjsua_var.acc[acc_id].srv_port == sip_uri->port)
1452 {
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001453 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001454 PJSUA_UNLOCK();
1455 return acc_id;
Benny Prijono21b9ad92006-08-15 13:11:22 +00001456 }
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001457 }
1458
Benny Prijonob4a17c92006-07-10 14:40:21 +00001459 /* If no match, try to match the domain part only */
Benny Prijono093d3022006-09-24 00:07:11 +00001460 for (i=0; i<pjsua_var.acc_cnt; ++i) {
1461 unsigned acc_id = pjsua_var.acc_ids[i];
1462 if (pj_stricmp(&pjsua_var.acc[acc_id].srv_domain, &sip_uri->host)==0)
1463 {
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001464 pj_pool_release(tmp_pool);
Benny Prijono093d3022006-09-24 00:07:11 +00001465 PJSUA_UNLOCK();
1466 return acc_id;
Benny Prijonob4a17c92006-07-10 14:40:21 +00001467 }
1468 }
1469
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001470
Benny Prijono093d3022006-09-24 00:07:11 +00001471 /* Still no match, just use default account */
Benny Prijonoc91ed8d2008-07-13 12:24:55 +00001472 pj_pool_release(tmp_pool);
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001473 PJSUA_UNLOCK();
Benny Prijono093d3022006-09-24 00:07:11 +00001474 return pjsua_var.default_acc;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001475}
1476
1477
1478/*
1479 * This is an internal function to find the most appropriate account to be
1480 * used to handle incoming calls.
1481 */
1482PJ_DEF(pjsua_acc_id) pjsua_acc_find_for_incoming(pjsip_rx_data *rdata)
1483{
1484 pjsip_uri *uri;
1485 pjsip_sip_uri *sip_uri;
Benny Prijono093d3022006-09-24 00:07:11 +00001486 unsigned i;
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001487
Benny Prijono371cf0a2007-06-19 00:35:37 +00001488 /* Check that there's at least one account configured */
1489 PJ_ASSERT_RETURN(pjsua_var.acc_cnt!=0, pjsua_var.default_acc);
1490
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001491 uri = rdata->msg_info.to->uri;
1492
1493 /* Just return default account if To URI is not SIP: */
1494 if (!PJSIP_URI_SCHEME_IS_SIP(uri) &&
1495 !PJSIP_URI_SCHEME_IS_SIPS(uri))
1496 {
1497 return pjsua_var.default_acc;
1498 }
1499
1500
1501 PJSUA_LOCK();
1502
1503 sip_uri = (pjsip_sip_uri*)pjsip_uri_get_uri(uri);
1504
1505 /* Find account which has matching username and domain. */
Benny Prijono093d3022006-09-24 00:07:11 +00001506 for (i=0; i < pjsua_var.acc_cnt; ++i) {
1507 unsigned acc_id = pjsua_var.acc_ids[i];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001508 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1509
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001510 if (acc->valid && pj_stricmp(&acc->user_part, &sip_uri->user)==0 &&
Benny Prijonob4a17c92006-07-10 14:40:21 +00001511 pj_stricmp(&acc->srv_domain, &sip_uri->host)==0)
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001512 {
1513 /* Match ! */
1514 PJSUA_UNLOCK();
1515 return acc_id;
1516 }
1517 }
1518
Benny Prijono093d3022006-09-24 00:07:11 +00001519 /* No matching account, try match domain part only. */
1520 for (i=0; i < pjsua_var.acc_cnt; ++i) {
1521 unsigned acc_id = pjsua_var.acc_ids[i];
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001522 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1523
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001524 if (acc->valid && pj_stricmp(&acc->srv_domain, &sip_uri->host)==0) {
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001525 /* Match ! */
1526 PJSUA_UNLOCK();
1527 return acc_id;
1528 }
1529 }
1530
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001531 /* No matching account, try match user part (and transport type) only. */
Benny Prijono093d3022006-09-24 00:07:11 +00001532 for (i=0; i < pjsua_var.acc_cnt; ++i) {
1533 unsigned acc_id = pjsua_var.acc_ids[i];
1534 pjsua_acc *acc = &pjsua_var.acc[acc_id];
1535
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001536 if (acc->valid && pj_stricmp(&acc->user_part, &sip_uri->user)==0) {
1537
1538 if (acc->cfg.transport_id != PJSUA_INVALID_ID) {
1539 pjsip_transport_type_e type;
1540 type = pjsip_transport_get_type_from_name(&sip_uri->transport_param);
1541 if (type == PJSIP_TRANSPORT_UNSPECIFIED)
1542 type = PJSIP_TRANSPORT_UDP;
1543
1544 if (pjsua_var.tpdata[acc->cfg.transport_id].type != type)
1545 continue;
1546 }
1547
Benny Prijono093d3022006-09-24 00:07:11 +00001548 /* Match ! */
1549 PJSUA_UNLOCK();
1550 return acc_id;
1551 }
1552 }
1553
Benny Prijonoeebe9af2006-06-13 22:57:13 +00001554 /* Still no match, use default account */
1555 PJSUA_UNLOCK();
1556 return pjsua_var.default_acc;
1557}
1558
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001559
Benny Prijonofff245c2007-04-02 11:44:47 +00001560/*
1561 * Create arbitrary requests for this account.
1562 */
1563PJ_DEF(pj_status_t) pjsua_acc_create_request(pjsua_acc_id acc_id,
1564 const pjsip_method *method,
1565 const pj_str_t *target,
1566 pjsip_tx_data **p_tdata)
1567{
1568 pjsip_tx_data *tdata;
1569 pjsua_acc *acc;
1570 pjsip_route_hdr *r;
1571 pj_status_t status;
1572
1573 PJ_ASSERT_RETURN(method && target && p_tdata, PJ_EINVAL);
1574 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
1575
1576 acc = &pjsua_var.acc[acc_id];
1577
1578 status = pjsip_endpt_create_request(pjsua_var.endpt, method, target,
1579 &acc->cfg.id, target,
1580 NULL, NULL, -1, NULL, &tdata);
1581 if (status != PJ_SUCCESS) {
1582 pjsua_perror(THIS_FILE, "Unable to create request", status);
1583 return status;
1584 }
1585
1586 /* Copy routeset */
1587 r = acc->route_set.next;
1588 while (r != &acc->route_set) {
Benny Prijonoa1e69682007-05-11 15:14:34 +00001589 pjsip_msg_add_hdr(tdata->msg,
1590 (pjsip_hdr*)pjsip_hdr_clone(tdata->pool, r));
Benny Prijonofff245c2007-04-02 11:44:47 +00001591 r = r->next;
1592 }
1593
1594 /* Done */
1595 *p_tdata = tdata;
1596 return PJ_SUCCESS;
1597}
1598
1599
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001600PJ_DEF(pj_status_t) pjsua_acc_create_uac_contact( pj_pool_t *pool,
1601 pj_str_t *contact,
1602 pjsua_acc_id acc_id,
1603 const pj_str_t *suri)
1604{
1605 pjsua_acc *acc;
1606 pjsip_sip_uri *sip_uri;
1607 pj_status_t status;
1608 pjsip_transport_type_e tp_type = PJSIP_TRANSPORT_UNSPECIFIED;
1609 pj_str_t local_addr;
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001610 pjsip_tpselector tp_sel;
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001611 unsigned flag;
1612 int secure;
1613 int local_port;
Benny Prijonod0bd4982007-12-02 15:40:52 +00001614 const char *beginquote, *endquote;
1615 char transport_param[32];
1616
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001617
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001618 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001619 acc = &pjsua_var.acc[acc_id];
1620
Benny Prijonof75eceb2007-03-23 19:09:54 +00001621 /* If force_contact is configured, then use use it */
1622 if (acc->cfg.force_contact.slen) {
1623 *contact = acc->cfg.force_contact;
1624 return PJ_SUCCESS;
1625 }
1626
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001627 /* If route-set is configured for the account, then URI is the
1628 * first entry of the route-set.
1629 */
1630 if (!pj_list_empty(&acc->route_set)) {
Benny Prijono9c1528f2007-02-10 19:22:25 +00001631 sip_uri = (pjsip_sip_uri*)
1632 pjsip_uri_get_uri(acc->route_set.next->name_addr.uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001633 } else {
1634 pj_str_t tmp;
1635 pjsip_uri *uri;
1636
1637 pj_strdup_with_null(pool, &tmp, suri);
1638
1639 uri = pjsip_parse_uri(pool, tmp.ptr, tmp.slen, 0);
1640 if (uri == NULL)
1641 return PJSIP_EINVALIDURI;
1642
1643 /* For non-SIP scheme, route set should be configured */
1644 if (!PJSIP_URI_SCHEME_IS_SIP(uri) && !PJSIP_URI_SCHEME_IS_SIPS(uri))
1645 return PJSIP_EINVALIDREQURI;
1646
Benny Prijono8c7a6172007-02-18 21:17:46 +00001647 sip_uri = (pjsip_sip_uri*)pjsip_uri_get_uri(uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001648 }
1649
1650 /* Get transport type of the URI */
1651 if (PJSIP_URI_SCHEME_IS_SIPS(sip_uri))
1652 tp_type = PJSIP_TRANSPORT_TLS;
1653 else if (sip_uri->transport_param.slen == 0) {
1654 tp_type = PJSIP_TRANSPORT_UDP;
1655 } else
1656 tp_type = pjsip_transport_get_type_from_name(&sip_uri->transport_param);
1657
1658 if (tp_type == PJSIP_TRANSPORT_UNSPECIFIED)
1659 return PJSIP_EUNSUPTRANSPORT;
1660
Benny Prijonod0bd4982007-12-02 15:40:52 +00001661 /* If destination URI specifies IPv6, then set transport type
1662 * to use IPv6 as well.
1663 */
Benny Prijono19b29372007-12-05 04:08:40 +00001664 if (pj_strchr(&sip_uri->host, ':'))
Benny Prijonod0bd4982007-12-02 15:40:52 +00001665 tp_type = (pjsip_transport_type_e)(((int)tp_type) + PJSIP_TRANSPORT_IPV6);
1666
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001667 flag = pjsip_transport_get_flag_from_type(tp_type);
1668 secure = (flag & PJSIP_TRANSPORT_SECURE) != 0;
1669
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001670 /* Init transport selector. */
1671 pjsua_init_tpselector(pjsua_var.acc[acc_id].cfg.transport_id, &tp_sel);
1672
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001673 /* Get local address suitable to send request from */
1674 status = pjsip_tpmgr_find_local_addr(pjsip_endpt_get_tpmgr(pjsua_var.endpt),
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001675 pool, tp_type, &tp_sel,
1676 &local_addr, &local_port);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001677 if (status != PJ_SUCCESS)
1678 return status;
1679
Benny Prijonod0bd4982007-12-02 15:40:52 +00001680 /* Enclose IPv6 address in square brackets */
1681 if (tp_type & PJSIP_TRANSPORT_IPV6) {
1682 beginquote = "[";
1683 endquote = "]";
1684 } else {
1685 beginquote = endquote = "";
1686 }
1687
1688 /* Don't add transport parameter if it's UDP */
Benny Prijono4c82c1e2008-10-16 08:14:51 +00001689 if (tp_type!=PJSIP_TRANSPORT_UDP && tp_type!=PJSIP_TRANSPORT_UDP6) {
Benny Prijonod0bd4982007-12-02 15:40:52 +00001690 pj_ansi_snprintf(transport_param, sizeof(transport_param),
1691 ";transport=%s",
1692 pjsip_transport_get_type_name(tp_type));
1693 } else {
1694 transport_param[0] = '\0';
1695 }
1696
1697
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001698 /* Create the contact header */
Benny Prijonoa1e69682007-05-11 15:14:34 +00001699 contact->ptr = (char*)pj_pool_alloc(pool, PJSIP_MAX_URL_SIZE);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001700 contact->slen = pj_ansi_snprintf(contact->ptr, PJSIP_MAX_URL_SIZE,
Benny Prijono30fe4852008-12-10 16:54:16 +00001701 "%.*s%s<%s:%.*s%s%s%.*s%s:%d%s%.*s>",
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001702 (int)acc->display.slen,
1703 acc->display.ptr,
1704 (acc->display.slen?" " : ""),
Benny Prijono8058a622007-06-08 04:37:05 +00001705 (secure ? PJSUA_SECURE_SCHEME : "sip"),
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001706 (int)acc->user_part.slen,
1707 acc->user_part.ptr,
1708 (acc->user_part.slen?"@":""),
Benny Prijonod0bd4982007-12-02 15:40:52 +00001709 beginquote,
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001710 (int)local_addr.slen,
1711 local_addr.ptr,
Benny Prijonod0bd4982007-12-02 15:40:52 +00001712 endquote,
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001713 local_port,
Benny Prijono30fe4852008-12-10 16:54:16 +00001714 transport_param,
1715 (int)acc->cfg.contact_params.slen,
1716 acc->cfg.contact_params.ptr);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001717
1718 return PJ_SUCCESS;
1719}
1720
1721
1722
1723PJ_DEF(pj_status_t) pjsua_acc_create_uas_contact( pj_pool_t *pool,
1724 pj_str_t *contact,
1725 pjsua_acc_id acc_id,
1726 pjsip_rx_data *rdata )
1727{
1728 /*
1729 * Section 12.1.1, paragraph about using SIPS URI in Contact.
1730 * If the request that initiated the dialog contained a SIPS URI
1731 * in the Request-URI or in the top Record-Route header field value,
1732 * if there was any, or the Contact header field if there was no
1733 * Record-Route header field, the Contact header field in the response
1734 * MUST be a SIPS URI.
1735 */
1736 pjsua_acc *acc;
1737 pjsip_sip_uri *sip_uri;
1738 pj_status_t status;
1739 pjsip_transport_type_e tp_type = PJSIP_TRANSPORT_UNSPECIFIED;
1740 pj_str_t local_addr;
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001741 pjsip_tpselector tp_sel;
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001742 unsigned flag;
1743 int secure;
1744 int local_port;
Benny Prijonod0bd4982007-12-02 15:40:52 +00001745 const char *beginquote, *endquote;
1746 char transport_param[32];
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001747
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001748 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001749 acc = &pjsua_var.acc[acc_id];
1750
Benny Prijonof75eceb2007-03-23 19:09:54 +00001751 /* If force_contact is configured, then use use it */
1752 if (acc->cfg.force_contact.slen) {
1753 *contact = acc->cfg.force_contact;
1754 return PJ_SUCCESS;
1755 }
1756
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001757 /* If Record-Route is present, then URI is the top Record-Route. */
1758 if (rdata->msg_info.record_route) {
Benny Prijono9c1528f2007-02-10 19:22:25 +00001759 sip_uri = (pjsip_sip_uri*)
1760 pjsip_uri_get_uri(rdata->msg_info.record_route->name_addr.uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001761 } else {
Benny Prijonoa330d452008-08-05 20:14:39 +00001762 pjsip_hdr *pos = NULL;
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001763 pjsip_contact_hdr *h_contact;
1764 pjsip_uri *uri = NULL;
1765
Benny Prijonoa330d452008-08-05 20:14:39 +00001766 /* Otherwise URI is Contact URI.
1767 * Iterate the Contact URI until we find sip: or sips: scheme.
1768 */
1769 do {
1770 h_contact = (pjsip_contact_hdr*)
1771 pjsip_msg_find_hdr(rdata->msg_info.msg, PJSIP_H_CONTACT,
1772 pos);
1773 if (h_contact) {
1774 uri = (pjsip_uri*) pjsip_uri_get_uri(h_contact->uri);
1775 if (!PJSIP_URI_SCHEME_IS_SIP(uri) &&
1776 !PJSIP_URI_SCHEME_IS_SIPS(uri))
1777 {
1778 pos = (pjsip_hdr*)h_contact->next;
1779 if (pos == &rdata->msg_info.msg->hdr)
1780 h_contact = NULL;
1781 } else {
1782 break;
1783 }
1784 }
1785 } while (h_contact);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001786
1787
1788 /* Or if Contact URI is not present, take the remote URI from
1789 * the From URI.
1790 */
1791 if (uri == NULL)
Benny Prijonoa1e69682007-05-11 15:14:34 +00001792 uri = (pjsip_uri*) pjsip_uri_get_uri(rdata->msg_info.from->uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001793
1794
1795 /* Can only do sip/sips scheme at present. */
1796 if (!PJSIP_URI_SCHEME_IS_SIP(uri) && !PJSIP_URI_SCHEME_IS_SIPS(uri))
1797 return PJSIP_EINVALIDREQURI;
1798
Benny Prijono8c7a6172007-02-18 21:17:46 +00001799 sip_uri = (pjsip_sip_uri*)pjsip_uri_get_uri(uri);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001800 }
1801
1802 /* Get transport type of the URI */
1803 if (PJSIP_URI_SCHEME_IS_SIPS(sip_uri))
1804 tp_type = PJSIP_TRANSPORT_TLS;
1805 else if (sip_uri->transport_param.slen == 0) {
1806 tp_type = PJSIP_TRANSPORT_UDP;
1807 } else
1808 tp_type = pjsip_transport_get_type_from_name(&sip_uri->transport_param);
Benny Prijonod0bd4982007-12-02 15:40:52 +00001809
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001810 if (tp_type == PJSIP_TRANSPORT_UNSPECIFIED)
1811 return PJSIP_EUNSUPTRANSPORT;
1812
Benny Prijonod0bd4982007-12-02 15:40:52 +00001813 /* If destination URI specifies IPv6, then set transport type
1814 * to use IPv6 as well.
1815 */
1816 if (pj_strchr(&sip_uri->host, ':'))
1817 tp_type = (pjsip_transport_type_e)(((int)tp_type) + PJSIP_TRANSPORT_IPV6);
1818
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001819 flag = pjsip_transport_get_flag_from_type(tp_type);
1820 secure = (flag & PJSIP_TRANSPORT_SECURE) != 0;
1821
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001822 /* Init transport selector. */
1823 pjsua_init_tpselector(pjsua_var.acc[acc_id].cfg.transport_id, &tp_sel);
1824
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001825 /* Get local address suitable to send request from */
1826 status = pjsip_tpmgr_find_local_addr(pjsip_endpt_get_tpmgr(pjsua_var.endpt),
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001827 pool, tp_type, &tp_sel,
1828 &local_addr, &local_port);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001829 if (status != PJ_SUCCESS)
1830 return status;
1831
Benny Prijonod0bd4982007-12-02 15:40:52 +00001832 /* Enclose IPv6 address in square brackets */
1833 if (tp_type & PJSIP_TRANSPORT_IPV6) {
1834 beginquote = "[";
1835 endquote = "]";
1836 } else {
1837 beginquote = endquote = "";
1838 }
1839
1840 /* Don't add transport parameter if it's UDP */
Benny Prijono4c82c1e2008-10-16 08:14:51 +00001841 if (tp_type!=PJSIP_TRANSPORT_UDP && tp_type!=PJSIP_TRANSPORT_UDP6) {
Benny Prijonod0bd4982007-12-02 15:40:52 +00001842 pj_ansi_snprintf(transport_param, sizeof(transport_param),
1843 ";transport=%s",
1844 pjsip_transport_get_type_name(tp_type));
1845 } else {
1846 transport_param[0] = '\0';
1847 }
1848
1849
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001850 /* Create the contact header */
Benny Prijonoa1e69682007-05-11 15:14:34 +00001851 contact->ptr = (char*) pj_pool_alloc(pool, PJSIP_MAX_URL_SIZE);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001852 contact->slen = pj_ansi_snprintf(contact->ptr, PJSIP_MAX_URL_SIZE,
Benny Prijono30fe4852008-12-10 16:54:16 +00001853 "%.*s%s<%s:%.*s%s%s%.*s%s:%d%s%.*s>",
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001854 (int)acc->display.slen,
1855 acc->display.ptr,
1856 (acc->display.slen?" " : ""),
Benny Prijono8058a622007-06-08 04:37:05 +00001857 (secure ? PJSUA_SECURE_SCHEME : "sip"),
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001858 (int)acc->user_part.slen,
1859 acc->user_part.ptr,
1860 (acc->user_part.slen?"@":""),
Benny Prijonod0bd4982007-12-02 15:40:52 +00001861 beginquote,
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001862 (int)local_addr.slen,
1863 local_addr.ptr,
Benny Prijonod0bd4982007-12-02 15:40:52 +00001864 endquote,
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001865 local_port,
Benny Prijono30fe4852008-12-10 16:54:16 +00001866 transport_param,
1867 (int)acc->cfg.contact_params.slen,
1868 acc->cfg.contact_params.ptr);
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001869
1870 return PJ_SUCCESS;
1871}
1872
1873
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001874PJ_DEF(pj_status_t) pjsua_acc_set_transport( pjsua_acc_id acc_id,
1875 pjsua_transport_id tp_id)
1876{
1877 pjsua_acc *acc;
1878
1879 PJ_ASSERT_RETURN(pjsua_acc_is_valid(acc_id), PJ_EINVAL);
1880 acc = &pjsua_var.acc[acc_id];
1881
Benny Prijonoa1e69682007-05-11 15:14:34 +00001882 PJ_ASSERT_RETURN(tp_id >= 0 && tp_id < (int)PJ_ARRAY_SIZE(pjsua_var.tpdata),
Benny Prijono62c5c5b2007-01-13 23:22:40 +00001883 PJ_EINVAL);
1884
1885 acc->cfg.transport_id = tp_id;
1886
1887 return PJ_SUCCESS;
1888}
Benny Prijonoc570f2d2006-07-18 00:33:02 +00001889