Thu May 14 13:05:11 CDT 2009 Pekka Pessi <first.last@nokia.com>

* nta_outgoing_tcreate(): log offending tag



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13542 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris 2009-06-01 22:51:27 +00:00
parent 0c164384e6
commit 59080b8d49
2 changed files with 11 additions and 3 deletions

View File

@ -1 +1 @@
Mon Jun 1 17:50:41 CDT 2009
Mon Jun 1 17:51:14 CDT 2009

View File

@ -7196,6 +7196,7 @@ nta_outgoing_t *nta_outgoing_tcreate(nta_leg_t *leg,
sip_t *sip;
nta_outgoing_t *orq = NULL;
ta_list ta;
tagi_t const *tagi;
if (leg == NULL)
return NULL;
@ -7209,8 +7210,15 @@ nta_outgoing_t *nta_outgoing_tcreate(nta_leg_t *leg,
ta_start(ta, tag, value);
if (sip_add_tl(msg, sip, ta_tags(ta)) < 0)
;
tagi = ta_args(ta);
if (sip_add_tagis(msg, sip, &tagi) < 0) {
if (tagi && tagi->t_tag) {
tag_type_t t = tagi->t_tag;
SU_DEBUG_5(("%s(): bad tag %s::%s\n", __func__,
t->tt_ns ? t->tt_ns : "", t->tt_name ? t->tt_name : ""));
}
}
else if (route_url == NULL && leg->leg_route &&
leg->leg_loose_route &&
!(route_url = (url_string_t *)leg->leg_route->r_url))