Dear Kamailio Developer,
we faces problem testing video conference between 3 user (more than 2 user)
sip server - jitsi.
We cannot traces due to no error logs found on kamailio server, as attached
below.
Could you help investigate the root cause?
How could you perform video conferences by default is running on jitsi-sip
server/kamailio ?
We have succesfully testing video call on between 2 user sip.
Thanks in advance ,
Best Regards,
Hi,
These changes create the kamailio-evapi-modules in debian wheezy + debian jessie. Before we don't have this module in the deb list.
Could you check if I did all ok? It works in jessie but I want to know If I did 100% compliant
Regards.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/112
-- Commit Summary --
* pkg/kamailio/deb/jessie: Add kamailio-evapi-modules
-- File Changes --
M pkg/kamailio/deb/debian/control (12)
M pkg/kamailio/deb/debian/rules (3)
M pkg/kamailio/deb/jessie/control (12)
M pkg/kamailio/deb/jessie/rules (3)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/112.patchhttps://github.com/kamailio/kamailio/pull/112.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/112
Module: kamailio
Branch: master
Commit: 6484b199fb48acc2c55f318812f2c968b845ca80
URL: https://github.com/kamailio/kamailio/commit/6484b199fb48acc2c55f318812f2c96…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2015-03-18T19:50:09+01:00
tm: propagate the on_failure value in to the branch for t_suspend()
- likely lost when on_failure was added to each branch structure
- reported by Mickael Marrache
---
Modified: modules/tm/t_suspend.c
---
Diff: https://github.com/kamailio/kamailio/commit/6484b199fb48acc2c55f318812f2c96…
Patch: https://github.com/kamailio/kamailio/commit/6484b199fb48acc2c55f318812f2c96…
---
diff --git a/modules/tm/t_suspend.c b/modules/tm/t_suspend.c
index 4b12dcf..4abfe72 100644
--- a/modules/tm/t_suspend.c
+++ b/modules/tm/t_suspend.c
@@ -93,6 +93,10 @@ int t_suspend(struct sip_msg *msg,
LM_ERR("failed to add the blind UAC\n");
return -1;
}
+ /* propagate failure route to new branch
+ * - failure route to be executed if the branch is not continued
+ * before timeout */
+ t->uac[t->async_backup.blind_uac].on_failure = t->on_failure;
} else {
LM_DBG("this is a suspend on reply - setting msg flag to SUSPEND\n");
msg->msg_flags |= FL_RPL_SUSPENDED;