Hi,
We are checking the kamailio source code for the ASYNC module. The system is working for REQUEST_ROUTE, but not for REPLY_ROUTE.
We added the ANY_ROUTE in the cmd_export_t, but still the async_route is not able to suspend for SIP Reply (For example, 401 - Unauthorized). Can we get some help on how to perform this. Some hints on how to perform would really help our development.
static cmd_export_t cmds[]={
{"async_route", (cmd_function)w_async_route, 2, fixup_async_route,
0, REQUEST_ROUTE|FAILURE_ROUTE|ANY_ROUTE},
{"async_sleep", (cmd_function)w_async_sleep, 1, fixup_async_sleep,
0, REQUEST_ROUTE|FAILURE_ROUTE|ANY_ROUTE},
{"async_task_route", (cmd_function)w_async_task_route, 1, fixup_async_task_route,
0, REQUEST_ROUTE|FAILURE_ROUTE|ANY_ROUTE},
{0, 0, 0, 0, 0, 0}
};
Regards,
RajaGopal Maddi
Module: kamailio
Branch: master
Commit: 8cd2eaa48c59d961379c1040e4373dcc398d2aaf
URL: https://github.com/kamailio/kamailio/commit/8cd2eaa48c59d961379c1040e4373dc…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2017-09-28T11:58:25+02:00
pkg/ser: added readme with not that ser packaging specs are removed
---
Added: pkg/ser/README.md
---
Diff: https://github.com/kamailio/kamailio/commit/8cd2eaa48c59d961379c1040e4373dc…
Patch: https://github.com/kamailio/kamailio/commit/8cd2eaa48c59d961379c1040e4373dc…
---
diff --git a/pkg/ser/README.md b/pkg/ser/README.md
new file mode 100644
index 0000000000..e1f11c9a75
--- /dev/null
+++ b/pkg/ser/README.md
@@ -0,0 +1,9 @@
+# Packaging SER Application #
+
+Specs for packaging SER were removed, not being maintained for very long time.
+
+See the specs for Kamailio packaging for up to date rules, they are located at:
+
+ * pkg/kamailio/
+
+For questions, email to sr-dev(a)lists.kamailio.org .
Hello,
to sync properly for the next major release (v5.1.0) and ongoing
development, I propose an IRC devel meeting for next week, on Wednesday,
Sep 27, 2017. An alternative would be the following day, Sep 28, or if
there are many devs that want to attend and cannot do it these days, we
can look at another date. Just propose new day and time.
I created a wiki page to collect the topics that are wanted to be discussed:
- https://www.kamailio.org/wiki/devel/irc-meetings/2017b
Fell free to add there or reply to the mailing list with what you think
it is relevant to discuss.
Cheers,
Daniel
--
Daniel-Constantin Mierla
www.twitter.com/miconda -- www.linkedin.com/in/miconda
Kamailio Advanced Training - www.asipto.com
Kamailio World Conference - www.kamailioworld.com
Hi,
I am a newbie to kamailio, trying to understand how async module works.
It is working for request_route.
I added ANY_ROUTE so as to allow for reply_route block as shown in the snippet below.
But the async_route function is not working for reply_route block. How can I achieve this.
static cmd_export_t cmds[]={
{"async_route", (cmd_function)w_async_route, 2, fixup_async_route,
0, REQUEST_ROUTE|FAILURE_ROUTE|ANY_ROUTE},
{"async_sleep", (cmd_function)w_async_sleep, 1, fixup_async_sleep,
0, REQUEST_ROUTE|FAILURE_ROUTE|ANY_ROUTE},
{"async_task_route", (cmd_function)w_async_task_route, 1, fixup_async_task_route,
0, REQUEST_ROUTE|FAILURE_ROUTE|ANY_ROUTE},
{0, 0, 0, 0, 0, 0}
};
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/issues/1247