lazedo wants to merge 1 commit into kamailio:master from lazedo:lazedo/db_text_raw_query:
example
. `select watcher_username, called from active_watchers where expires <> -1`
current limitations
. only select statements
. where clause always uses "and"
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/146
-- Commit Summary --
* db_text : add db_raw_query support
-- File Changes --
M modules/db_text/dbt_base.c (50)
A modules/db_text/dbt_raw_query.c (201)
A modules/db_text/dbt_raw_query.h (37)
A modules/db_text/dbt_raw_util.c (247)
A modules/db_text/dbt_raw_util.h (40)
M modules/db_text/dbtext.h (2)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/146.patchhttps://github.com/kamailio/kamailio/pull/146.diff
---
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/146
Module: kamailio
Branch: master
Commit: c63d6b6094cdf7c0651f087e989590a05f1f1dd8
URL: https://github.com/kamailio/kamailio/commit/c63d6b6094cdf7c0651f087e989590a…
Author: Stefan Mititelu <stefan.mititelu(a)1and1.ro>
Committer: Stefan Mititelu <stefan.mititelu(a)1and1.ro>
Date: 2015-04-28T09:06:17+03:00
rtpengine: update documentation for IPv6 force_send_interface.
- Updated documentation with an example of how to use IPv6 with rtpengine.
---
Modified: modules/rtpengine/doc/rtpengine_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/c63d6b6094cdf7c0651f087e989590a…
Patch: https://github.com/kamailio/kamailio/commit/c63d6b6094cdf7c0651f087e989590a…
---
diff --git a/modules/rtpengine/doc/rtpengine_admin.xml b/modules/rtpengine/doc/rtpengine_admin.xml
index 2c8bab5..6be5386 100644
--- a/modules/rtpengine/doc/rtpengine_admin.xml
+++ b/modules/rtpengine/doc/rtpengine_admin.xml
@@ -265,9 +265,13 @@ modparam("rtpengine", "setid_avp", "$avp(setid)")
<para>
Forces all control messages between the &sip; proxy and
the &rtp; proxy to be sent from the specified local
- interface. Only IPv4 addresses are supported so far. If
+ interface. Both IPv4 and IPv6 addresses are supported. If
not specified, the default interface selected by the
operating system will be used.
+ Note: when rtpengine_sock is a IPv6 link-local address,
+ one _must_ set this parameter in order to successfully connect to RTP engine.
+ This is necessarely because OS needs additional scope_id hint to communicate
+ over IPv6 link locals. The scope_id is resolved based on the given IPv6.
</para>
<para>
There is no default value.
@@ -277,6 +281,7 @@ modparam("rtpengine", "setid_avp", "$avp(setid)")
<programlisting format="linespecific">
...
modparam("rtpengine", "force_send_interface", "10.3.7.123")
+modparam("rtpengine", "force_send_interface", "2001:8d8:1ff:10c0:9a90:96ff:fea8:fd99")
...
</programlisting>
</example>