Module: sip-router
Branch: treimann/acc-cdr
Commit: 94338392c1202c1c7e5e3f3fdebef3ca915ef20a
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=9433839…
Author: Timo Reimann <timo.reimann(a)1und1.de>
Committer: Timo Reimann <timo.reimann(a)1und1.de>
Date: Tue Aug 16 19:44:41 2011 +0200
Merge branch 'master' into treimann/acc-cdr
* master:
modules_k/dialog: In docs, fix indention of example to "detect_spirals".
modules/app_lua, modules/sdpops: Exported sdpops:sdp_with_media() to app_lua
modules_k/dispatcher: Added new feature that enables routes to be run when destinations fail/recover
tmx: fixed mix-up between $T(id_index) and $T(id_label)
---
THIS IS AN AUTOMATED MESSAGE, DO NOT REPLY.
The following task has a new comment added:
FS#125 - spiraled dialogs not detected when calling dlg_manage() on in-dialog requests
User who did this - Jon Bonilla (manwe)
----------
If the patch can be merged into my custom 3.1.3 build I could test it in my failing scenario and report back.
----------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=125#comment248
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 been changed. The changes are listed below. For full information about what has changed, visit the URL and click the History tab.
FS#125 - spiraled dialogs not detected when calling dlg_manage() on in-dialog requests
User who did this: Timo Reimann (tr)
Task details edited:
-------
When calling dlg_manage() while an in-dialog request is being processed, spirals are not detected even when spiral detection is enabled in the dialog module.
The reason for this is that spiral detection is implemented in dlg_onreq(). However, dlg_manage() calls dlg_new_dialog() directly, thereby circumventing spiral detection functionality.
A fix is to move the spiral detection code into dlg_new_dialog(). This should make it work regardless of how a dialog is (possibly) created.
-------
More information can be found at the following URL:
http://sip-router.org/tracker/index.php?do=details&task_id=125
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.
Module: sip-router
Branch: master
Commit: 085638299508ef6bf0c96673a663453da76d0a4f
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=0856382…
Author: pd <peter.dunkley(a)crocodile-rcs.com>
Committer: pd <peter.dunkley(a)crocodile-rcs.com>
Date: Tue Aug 16 11:24:44 2011 +0100
modules_k/dispatcher: Added new feature that enables routes to be run when destinations fail/recover
- Two new exported parameters ds_dst_unavailable_route and
ds_dst_available_route allow you to specify routes to run when
a destination is marked PROBING and unmarked PROBING respectively.
This is useful for integration with NMC and alarms equipment as
these routes can be used to trigger/log these status changes.
---
modules_k/dispatcher/README | 114 ++++++++++++++++++-------
modules_k/dispatcher/dispatch.c | 64 ++++++++++++--
modules_k/dispatcher/dispatch.h | 5 +-
modules_k/dispatcher/dispatcher.c | 94 ++++++++++++++++++++
modules_k/dispatcher/doc/dispatcher_admin.xml | 64 ++++++++++++++-
5 files changed, 299 insertions(+), 42 deletions(-)
Diff: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commitdiff;h=085…
Heisann,
it appears the new $T() pvars from the TMX module have a slight mixup.
$T(id_index) actually returns the label and $T(id_label) the index.
The attached patch fixes that. I could probably commit it myself, but
rather not start messing with the repository just yet ;)
Regards,
Martin