-
Your patch seems ok, I will double check and fix. Thanks!
2009-11-15 04:18:55 UTC by miconda
-
Should be fixed now on GIT. Thanks.
2009-11-15 04:17:22 UTC by miconda
-
Hi,
In default config. just after a loode_route check, call to route(1). there is no such route. Correct is route(RELAY). Because it renamed in new config. Was struggling 40 minutes.
Fix it please.
2009-11-15 03:21:10 UTC by mangust2
-
A! it happen because before in v1.5 ./parser/hf.h
/**
* SIP Header types.
* if you add a new type:
* - make sure it's not greater than 63
* - make sure you add the corresponding flag to the hdr_flags_t defs below
* - update clean_hdr_field (in hf.c)
* - update sip_msg_cloner (modules/tm/sip_msg.c)
* - update parse_headers (msg_parser.c)
*/
enum _hdr_types_t {...
2009-11-14 07:26:13 UTC by mangust2
-
yes, this work as well:
for( hdr=rpl->headers ; hdr ; hdr=hdr->next )
{
if ( hdr->type!=HDR_WWW_AUTHENTICATE_T &&
hdr->type!=HDR_PROXY_AUTHENTICATE_T )
continue;
if (cmp_hdrname_str(&hdr->name, &hdr_name)==0)
return hdr;
}.
2009-11-14 07:20:43 UTC by mangust2
-
in file modules_k/uac/auth.c
line 235:
for( hdr=rpl->headers ; hdr ; hdr=hdr->next )
{
// -->> if ( hdr->type!=HDR_OTHER_T)
// -->> continue;
if (cmp_hdrname_str(&hdr->name, &hdr_name)==0)
return hdr;
}
commented out line prevent from recognizing authentication field causing error.
Nov...
2009-11-14 07:14:33 UTC by mangust2
-
You can commit the patch - I was waiting for you to test if svn access works ok.
Daniel.
2009-11-10 16:27:38 UTC by nobody
-
I haven't had any crashes recently, so it seems fixed. I haven't, however, tried calling dlg_manage() on an INVITE anymore.
2009-11-10 16:18:13 UTC by axlh
-
It does, but the inconsistency stays. The ruri in branch_route after DNS failover is different from the ruri in the branch_route of the initial t_relay if in that branch_route, the ruri is rewritten.
2009-11-10 16:15:36 UTC by axlh
-
Yes, as far as I remember it is fixed.
2009-11-10 16:14:02 UTC by axlh