I recently upgraded to 4.0.6 from an older 4.0.x version using GIT, since then I have had several functions stop working. Here is one example:
I have a UA that is not in the location table, when calling I get the following output as a result of my xlog statements - (xlog statements added for troubleshooting)
INFO: xlog: 506:5d4d339e5a0fcb2d1ce245cb1c07bb71: Location not found for user-x INFO: xlog: 524:5d4d339e5a0fcb2d1ce245cb1c07bb71: no match
if (!lookup("location")) { xlogl("L_INFO", "$ci : Location not found for $rU\n"); $var(rc) = $rc; t_newtran(); switch ($var(rc)) { case -1: xlogl("L_INFO", "$ci : case -1\n"); send_reply("480", "Temporarily Unavailable"); exit; case -2: xlogl("L_INFO", "$ci : case -2\n"); send_reply("405", "Method Not Allowed"); exit; case -3: xlogl("L_INFO", "$ci : case -3\n"); sl_send_reply("500", "Server Internal Error"); exit; } } xlogl("L_INFO", "$ci : no match\n");
This worked previous to the upgrade, it should match case -1 but doesn't. Any direction is appreciated.
Thanks,
-dan
Great idea! It returned a '1'.
-----Original Message----- From: sr-users-bounces@lists.sip-router.org [mailto:sr-users-bounces@lists.sip-router.org] On Behalf Of Juha Heinanen Sent: Friday, May 23, 2014 2:30 PM To: Kamailio (SER) - Users Mailing List Subject: [SR-Users] Issues after upgrade
Daniel W. Graham writes:
if (!lookup("location")) { xlogl("L_INFO", "$ci : Location not found for $rU\n"); $var(rc) = $rc;
xlog $rc to see what value it has.
-- juha
_______________________________________________ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
Daniel W. Graham writes:
Great idea! It returned a '1'.
if (!lookup("location")) { xlogl("L_INFO", "$ci : Location not found for $rU\n"); $var(rc) = $rc;
xlog $rc to see what value it has.
where did you put xlog? note that setting of $var(rc) should be done immediate after lookup. otherwise it is $rc of xlog.
-- juha
I originally put it in the last xlog statement, thanks for catching that. I moved directly after the lookup and it returns '-1'.
-----Original Message----- From: sr-users-bounces@lists.sip-router.org [mailto:sr-users-bounces@lists.sip-router.org] On Behalf Of Juha Heinanen Sent: Friday, May 23, 2014 2:57 PM To: Kamailio (SER) - Users Mailing List Subject: Re: [SR-Users] Issues after upgrade
Daniel W. Graham writes:
Great idea! It returned a '1'.
if (!lookup("location")) { xlogl("L_INFO", "$ci : Location not found for $rU\n"); $var(rc) = $rc;
xlog $rc to see what value it has.
where did you put xlog? note that setting of $var(rc) should be done immediate after lookup. otherwise it is $rc of xlog.
-- juha
_______________________________________________ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
With that said, the first xlog statement was added prior to uncovering this issue and adding additional statements attempting to figure out this issue.
if (!lookup("location")) { xlogl("L_INFO", "$ci : Location not found for $rU\n"); $var(rc) = $rc;
Since $rc was reading the return code from the xlog statement that is what in fact caused this particular issue.
I removed the first xlog statement and all is good now.
I was not aware that xlog would have a return code, thank you for opening my eyes!
-----Original Message----- From: sr-users-bounces@lists.sip-router.org [mailto:sr-users-bounces@lists.sip-router.org] On Behalf Of Daniel W. Graham Sent: Friday, May 23, 2014 3:04 PM To: Kamailio (SER) - Users Mailing List Subject: Re: [SR-Users] Issues after upgrade
I originally put it in the last xlog statement, thanks for catching that. I moved directly after the lookup and it returns '-1'.
-----Original Message----- From: sr-users-bounces@lists.sip-router.org [mailto:sr-users-bounces@lists.sip-router.org] On Behalf Of Juha Heinanen Sent: Friday, May 23, 2014 2:57 PM To: Kamailio (SER) - Users Mailing List Subject: Re: [SR-Users] Issues after upgrade
Daniel W. Graham writes:
Great idea! It returned a '1'.
if (!lookup("location")) { xlogl("L_INFO", "$ci : Location not found for $rU\n"); $var(rc) = $rc;
xlog $rc to see what value it has.
where did you put xlog? note that setting of $var(rc) should be done immediate after lookup. otherwise it is $rc of xlog.
-- juha
_______________________________________________ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users
_______________________________________________ SIP Express Router (SER) and Kamailio (OpenSER) - sr-users mailing list sr-users@lists.sip-router.org http://lists.sip-router.org/cgi-bin/mailman/listinfo/sr-users