-
sackrtp made 1 file-release changes.
2009-08-11 15:21:01 UTC in motion
-
sackrtp made 2 file-release changes.
2009-08-11 15:20:01 UTC in motion
-
sackrtp made 1 file-release changes.
2009-08-10 15:37:01 UTC in motion
-
Using opensrctl to add a new prefix like :
openserctl cr addcarrier 0 xxxxxxxxxx mydomain x.x.x.x 1
failed because quotes for DOMAIN are missing in opensrctl
Attached a patch that fix this issue.
2008-08-15 23:19:01 UTC in Kamailio (OpenSER) SIP server
-
lcr addgw_grp has not sense anymore. So better remove it to don't get confused.
2008-08-07 07:27:38 UTC in OpenSIPS/OpenSER-a versatile SIP Server
-
lcr addgw_grp has not sense anymore. So better remove it to don't get confused.
2008-08-07 07:04:21 UTC in Kamailio (OpenSER) SIP server
-
File Added: dispatcher-openserctl-2.diff.
2008-03-01 19:59:47 UTC in Kamailio (OpenSER) SIP server
-
This patch add a missing feature to openserctl allowing manage Dispatche.
2008-01-31 01:07:45 UTC in Kamailio (OpenSER) SIP server
-
Thanks , was a problem of interpretation.
2007-05-17 15:14:56 UTC in Kamailio (OpenSER) SIP server
-
I guess that comp_lcrs() function in modules/lcr/lcr_mod.c is not ordering correctly by priority.
if (lcr_record1.priority < lcr_record2.priority) {
result = 1;
}
else if (lcr_record1.priority == lcr_record2.priority) {
/* Nothing to do. */
result = 0;
}
Higher priority should return 1.
So a simple change to fix that issue will be :
if (lcr_record1.priority >...
2007-05-17 04:11:29 UTC in Kamailio (OpenSER) SIP server