THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task is now closed:
FS#340 - module pua_reginfo, function reginfo_handle_notify
User who did this - Daniel-Constantin Mierla (miconda)
Reason for closing: Fixed
Additional comments about closing: Documentation enhanced to reflect the parameter for the function.
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=340
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task is now closed:
FS#339 - pua_reginfo: Fails to insert the contact into the location table
User who did this - Daniel-Constantin Mierla (miconda)
Reason for closing: Fixed
Additional comments about closing: Patches applied.
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=339
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task is now closed:
FS#338 - Kamailio 4.0.x crash with pua_reginfo : reginfo_handle_notify
User who did this - Daniel-Constantin Mierla (miconda)
Reason for closing: Fixed
Additional comments about closing: Patch applied, thanks!
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=338
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#346 - avpops: use xavp semantic on second parameter
User who did this - Daniel-Constantin Mierla (miconda)
----------
I see it depends on pv module, by including some header file from there. What exactly it is needed for? It should be made in a way to avoid this, eventually moving some structure declaration or function in xavp.h in core or finding another solution.
----------
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=346#comment1083
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
A new Flyspray task has been opened. Details are below.
User who did this - Víctor Seva (linuxmaniac)
Attached to Project - sip-router
Summary - avpops: use xavp semantic on second parameter
Task Type - Improvement
Category - Modules kamailio
Status - Unconfirmed
Assigned To -
Operating System - All
Severity - Low
Priority - Normal
Reported Version - Development
Due in Version - Undecided
Due Date - Undecided
Details - Add the possibility to use the xavp as second parameter with [*] to check all xavp values.
if(avp_check("$avp(s:foo)","re/$xavp(test[0]=>re[*])/g"))
{
xlog("L_INFO", "[3.2] $avp(s:foo)->$xavp(test[0]=>re[*]) found!\n");
}
One or more files have been attached.
More information can be found at the following URL:
https://sip-router.org/tracker/index.php?do=details&task_id=346
You are receiving this message because you have requested it from the Flyspray bugtracking system. If you did not expect this message or don't want to receive mails in future, you can change your notification settings at the URL shown above.
sca_call_info_uri_update() return value is passed directly as
return value of script function "sca_call_info_update". Return
value 0 means 'exit script' but that is unwanted. Fix it to
just continue with script execution normally.
---
Andrew, does this look ok? Can I push this, or will you do it?
Should go to master and 4.0 branch at least.
modules/sca/sca_call_info.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/modules/sca/sca_call_info.c b/modules/sca/sca_call_info.c
index 43c7f56..b71bed3 100644
--- a/modules/sca/sca_call_info.c
+++ b/modules/sca/sca_call_info.c
@@ -743,7 +743,7 @@ sca_call_info_uri_update( str *aor, sca_call_info *call_info,
STR_FMT( contact_uri ), STR_FMT( call_id ), call_info->index );
if ( !sca_uri_is_shared_appearance( sca, aor )) {
- return( 0 );
+ return( 1 );
}
dialog.id.s = dlg_buf;
--
1.8.4