Module: kamailio
Branch: master
Commit: 37c27ef7b42e2db7ea5754d4fe96854debc54b66
URL:
https://github.com/kamailio/kamailio/commit/37c27ef7b42e2db7ea5754d4fe96854…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2018-08-31T21:01:29+02:00
modules: readme files regenerated - dmq ... [skip ci]
---
Modified: src/modules/dmq/README
---
Diff:
https://github.com/kamailio/kamailio/commit/37c27ef7b42e2db7ea5754d4fe96854…
Patch:
https://github.com/kamailio/kamailio/commit/37c27ef7b42e2db7ea5754d4fe96854…
---
diff --git a/src/modules/dmq/README b/src/modules/dmq/README
index 909443f69d..d4ddcb8645 100644
--- a/src/modules/dmq/README
+++ b/src/modules/dmq/README
@@ -46,7 +46,7 @@ Charles Chance
4. Functions
- 4.1. dmq_handle_message()
+ 4.1. dmq_handle_message([continue])
4.2. dmq_send_message(peer, node, body, content_type)
4.3. dmq_bcast_message(peer, body, content_type)
4.4. dmq_t_replicate([skip_loop_test])
@@ -109,7 +109,7 @@ Chapter 1. Admin Guide
4. Functions
- 4.1. dmq_handle_message()
+ 4.1. dmq_handle_message([continue])
4.2. dmq_send_message(peer, node, body, content_type)
4.3. dmq_bcast_message(peer, body, content_type)
4.4. dmq_t_replicate([skip_loop_test])
@@ -269,17 +269,23 @@ modparam("dmq", "ping_interval", 90)
4. Functions
- 4.1. dmq_handle_message()
+ 4.1. dmq_handle_message([continue])
4.2. dmq_send_message(peer, node, body, content_type)
4.3. dmq_bcast_message(peer, body, content_type)
4.4. dmq_t_replicate([skip_loop_test])
4.5. dmq_is_from_node()
-4.1. dmq_handle_message()
+4.1. dmq_handle_message([continue])
Handles a DMQ message by passing it to the appropriate local peer
(module). The peer is identified by the user part of the To header.
+ Meaning of parameters:
+ * continue - by default, dmq_handle_message() will end execution of
+ routing script. If this optional parameter is set to "1",
+ dmq_handle_message() will continue executing the routing script
+ after it's been called.
+
This function can be used from REQUEST_ROUTE.
Example 1.8. dmq_handle_message usage