summaryrefslogtreecommitdiff
path: root/pjsip/src
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2010-06-20 08:58:26 +0000
committerBenny Prijono <bennylp@teluu.com>2010-06-20 08:58:26 +0000
commit1ebdfe9fb3ec2c155ec09d31f82748ecfdf9c86e (patch)
treed14101455fb4753a518726a16b20ed5ad2b09363 /pjsip/src
parent8d35b8f739dbad39422332ecb8376cc18a858f2e (diff)
Fixed #1086 (New option to update the Contact URI in a single REGISTER request): added contact_rewrite_method account config to control this. Default is to use the new mechanism, i.e. the single REGISTER method.
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3213 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/src')
-rw-r--r--pjsip/src/pjsua-lib/pjsua_acc.c38
-rw-r--r--pjsip/src/pjsua-lib/pjsua_core.c1
2 files changed, 27 insertions, 12 deletions
diff --git a/pjsip/src/pjsua-lib/pjsua_acc.c b/pjsip/src/pjsua-lib/pjsua_acc.c
index ad25152f..925c71a9 100644
--- a/pjsip/src/pjsua-lib/pjsua_acc.c
+++ b/pjsip/src/pjsua-lib/pjsua_acc.c
@@ -1098,24 +1098,33 @@ static pj_bool_t acc_check_nat_addr(pjsua_acc *acc,
}
PJ_LOG(3,(THIS_FILE, "IP address change detected for account %d "
- "(%.*s:%d --> %.*s:%d). Updating registration..",
+ "(%.*s:%d --> %.*s:%d). Updating registration "
+ "(using method %d)",
acc->index,
(int)uri->host.slen,
uri->host.ptr,
uri->port,
(int)via_addr->slen,
via_addr->ptr,
- rport));
+ rport,
+ acc->cfg.contact_rewrite_method));
- /* Unregister current contact */
- pjsua_acc_set_registration(acc->index, PJ_FALSE);
- if (acc->regc != NULL) {
- pjsip_regc_destroy(acc->regc);
- acc->regc = NULL;
- acc->contact.slen = 0;
+ pj_assert(acc->cfg.contact_rewrite_method == 1 ||
+ acc->cfg.contact_rewrite_method == 2);
+
+ if (acc->cfg.contact_rewrite_method == 1) {
+ /* Unregister current contact */
+ pjsua_acc_set_registration(acc->index, PJ_FALSE);
+ if (acc->regc != NULL) {
+ pjsip_regc_destroy(acc->regc);
+ acc->regc = NULL;
+ acc->contact.slen = 0;
+ }
}
- /* Update account's Contact header */
+ /*
+ * Build new Contact header
+ */
{
char *tmp;
const char *beginquote, *endquote;
@@ -1151,11 +1160,16 @@ static pj_bool_t acc_check_nat_addr(pjsua_acc *acc,
return PJ_FALSE;
}
pj_strdup2_with_null(acc->pool, &acc->contact, tmp);
+
+ /* Always update, by http://trac.pjsip.org/repos/ticket/864. */
+ pj_strdup_with_null(tp->pool, &tp->local_name.host, via_addr);
+ tp->local_name.port = rport;
+
}
- /* Always update, by http://trac.pjsip.org/repos/ticket/864. */
- pj_strdup_with_null(tp->pool, &tp->local_name.host, via_addr);
- tp->local_name.port = rport;
+ if (acc->cfg.contact_rewrite_method == 2 && acc->regc != NULL) {
+ pjsip_regc_update_contact(acc->regc, 1, &acc->contact);
+ }
/* Perform new registration */
pjsua_acc_set_registration(acc->index, PJ_TRUE);
diff --git a/pjsip/src/pjsua-lib/pjsua_core.c b/pjsip/src/pjsua-lib/pjsua_core.c
index 5d231cbf..888b3dbe 100644
--- a/pjsip/src/pjsua-lib/pjsua_core.c
+++ b/pjsip/src/pjsua-lib/pjsua_core.c
@@ -178,6 +178,7 @@ PJ_DEF(void) pjsua_acc_config_default(pjsua_acc_config *cfg)
cfg->srtp_optional_dup_offer = pjsua_var.ua_cfg.srtp_optional_dup_offer;
#endif
cfg->reg_retry_interval = PJSUA_REG_RETRY_INTERVAL;
+ cfg->contact_rewrite_method = PJSUA_CONTACT_REWRITE_METHOD;
}
PJ_DEF(void) pjsua_buddy_config_default(pjsua_buddy_config *cfg)