Module: kamailio
Branch: master
Commit: 11ff4226dea81582fd97661701142abbf5348911
URL: https://github.com/kamailio/kamailio/commit/11ff4226dea81582fd97661701142ab…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2018-06-12T09:01:50+02:00
dispatcher: use xavps instead of avps
- removed avp names parameters
- new parameters:
- xavp_dst - name of the xavp to store destination records
- xavp_dst_mode - control the fields added to xavp_dst
- xavp_ctx - name of the xavp to store context attributes
- xavp_ctx_mode - control the fields added to xavp_ctx
---
Modified: src/modules/dispatcher/dispatch.c
Modified: src/modules/dispatcher/dispatch.h
Modified: src/modules/dispatcher/dispatcher.c
---
Diff: https://github.com/kamailio/kamailio/commit/11ff4226dea81582fd97661701142ab…
Patch: https://github.com/kamailio/kamailio/commit/11ff4226dea81582fd97661701142ab…
I noticed that ```kamailio -I``` and ```kamailio -V``` do not give git version hash anymore.
This commit fixes at least kamailio -I and -V output, I think.
I don't know / remember if further adjustment is needed for other REPO_ constants.
# Before
```
#define REPO_VER ""
#define REPO_HASH "unknown"
#define REPO_STATE ""
```
```
$ src/kamailio -I|grep Source
Source code revision ID: unknown
```
# After
```
#define REPO_VER "5c48b2"
#define REPO_HASH "5c48b2"
#define REPO_STATE ""
```
```
$ src/kamailio -I|grep Source
Source code revision ID: 5c48b2
```
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/1560
-- Commit Summary --
* src/Makefile: adjust Makefile to populate REPO_ variables in autover.h again
-- File Changes --
M src/Makefile (4)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/1560.patchhttps://github.com/kamailio/kamailio/pull/1560.diff
--
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/pull/1560
Module: kamailio
Branch: master
Commit: ebd207ade41ccdfec687d85e210c32ffe9a7e6b0
URL: https://github.com/kamailio/kamailio/commit/ebd207ade41ccdfec687d85e210c32f…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2018-06-11T18:16:43+02:00
modules: readme files regenerated - mqueue ... [skip ci]
---
Modified: src/modules/mqueue/README
Modified: src/modules/rtpproxy/README
Modified: src/modules/sdpops/README
Modified: src/modules/tmx/README
---
Diff: https://github.com/kamailio/kamailio/commit/ebd207ade41ccdfec687d85e210c32f…
Patch: https://github.com/kamailio/kamailio/commit/ebd207ade41ccdfec687d85e210c32f…
---
diff --git a/src/modules/mqueue/README b/src/modules/mqueue/README
index 118cc534c8..860887af56 100644
--- a/src/modules/mqueue/README
+++ b/src/modules/mqueue/README
@@ -200,7 +200,7 @@ xlog("L_INFO", "Size of queue is: $var(q_size)\n");
5. Exported Variables
- * $mqv(mqueue) - the most recent item key fetched from the specified
+ * $mqk(mqueue) - the most recent item key fetched from the specified
mqueue
* $mqv(mqueue) - the most recent item value fetched from the
specified mqueue
diff --git a/src/modules/rtpproxy/README b/src/modules/rtpproxy/README
index 556e93d66b..9b7aa5a818 100644
--- a/src/modules/rtpproxy/README
+++ b/src/modules/rtpproxy/README
@@ -230,7 +230,7 @@ Chapter 1. Admin Guide
4.1. rtpproxy_sock (string)
- Used to define the list of RTPPRoxy instances to connect to. These can
+ Used to define the list of RTPProxy instances to connect to. These can
be UNIX sockets or IPv4/IPv6 UDP sockets. Each modparam entry will
insert sockets into a single set. If no set ID is given, the default
set ID '0' will be used. To define multiple sets add the set number at
diff --git a/src/modules/sdpops/README b/src/modules/sdpops/README
index 7e029018f9..ce0e06ec2c 100644
--- a/src/modules/sdpops/README
+++ b/src/modules/sdpops/README
@@ -482,7 +482,7 @@ if(sdp_with_ice()) {
Store the search part of SDP body message with line beginning with
'string' in an AVP. Return 1 if 'string' is found in SDP, -1 on error
and -2 if there is no SDP part in the message body. The second
- parameter can contain psudeo-variables.
+ parameter can contain pseudo-variables.
This function can be used from ANY_ROUTE.
diff --git a/src/modules/tmx/README b/src/modules/tmx/README
index 81568f329d..58237382cd 100644
--- a/src/modules/tmx/README
+++ b/src/modules/tmx/README
@@ -264,7 +264,7 @@ if (t_reply_callid("123qaz", "5", "458", "Replied remotely")) {
created via t_newtran() and the flags have been altered since.
It is not needed to execute this function when using t_relay() (or
- similar tm relay functions, flags are synchornized automatically in
+ similar tm relay functions, flags are synchronized automatically in
that case).
This function can be used from ANY_ROUTE .
@@ -282,7 +282,7 @@ t_flush_flags();
been altered since.
It is not needed to execute this function when using t_relay() (or
- similar tm relay functions, xflags are synchornized automatically in
+ similar tm relay functions, xflags are synchronized automatically in
that case).
This function can be used from ANY_ROUTE .
Module: kamailio
Branch: master
Commit: f46fc58f88b41563ada32b2abb13cf47161eeb5a
URL: https://github.com/kamailio/kamailio/commit/f46fc58f88b41563ada32b2abb13cf4…
Author: Mikko Lehto <mslehto(a)iki.fi>
Committer: Mikko Lehto <mslehto(a)iki.fi>
Date: 2018-06-11T18:55:53+03:00
sdpops: fix documentation typo
---
Modified: src/modules/sdpops/doc/sdpops_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/f46fc58f88b41563ada32b2abb13cf4…
Patch: https://github.com/kamailio/kamailio/commit/f46fc58f88b41563ada32b2abb13cf4…
---
diff --git a/src/modules/sdpops/doc/sdpops_admin.xml b/src/modules/sdpops/doc/sdpops_admin.xml
index 37f7f2d5a7..f51dfe0a3c 100644
--- a/src/modules/sdpops/doc/sdpops_admin.xml
+++ b/src/modules/sdpops/doc/sdpops_admin.xml
@@ -557,7 +557,7 @@ if(sdp_with_ice()) {
<para>
Store the search part of SDP body message with line beginning with 'string' in an AVP.
Return 1 if 'string' is found in SDP, -1 on error and -2 if there is no SDP part in the message body.
- The second parameter can contain psudeo-variables.
+ The second parameter can contain pseudo-variables.
</para>
<para>
This function can be used from ANY_ROUTE.
Module: kamailio
Branch: master
Commit: 9ba37fd602a67066bd49f6959350ea1fd72d5e47
URL: https://github.com/kamailio/kamailio/commit/9ba37fd602a67066bd49f6959350ea1…
Author: Mikko Lehto <mslehto(a)iki.fi>
Committer: Mikko Lehto <mslehto(a)iki.fi>
Date: 2018-06-11T18:55:38+03:00
mqueue: fix typo in variable name documentation
---
Modified: src/modules/mqueue/doc/mqueue_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/9ba37fd602a67066bd49f6959350ea1…
Patch: https://github.com/kamailio/kamailio/commit/9ba37fd602a67066bd49f6959350ea1…
---
diff --git a/src/modules/mqueue/doc/mqueue_admin.xml b/src/modules/mqueue/doc/mqueue_admin.xml
index f9c3493aaf..0ab18f0be0 100644
--- a/src/modules/mqueue/doc/mqueue_admin.xml
+++ b/src/modules/mqueue/doc/mqueue_admin.xml
@@ -207,7 +207,7 @@ xlog("L_INFO", "Size of queue is: $var(q_size)\n");
<title>Exported Variables</title>
<itemizedlist>
<listitem>
- <emphasis>$mqv(mqueue)</emphasis> - the most recent item key fetched from the specified mqueue
+ <emphasis>$mqk(mqueue)</emphasis> - the most recent item key fetched from the specified mqueue
</listitem>
<listitem>
<emphasis>$mqv(mqueue)</emphasis> - the most recent item value fetched from the specified mqueue
Module: kamailio
Branch: master
Commit: 21c219bcdd3f74a029582cd353c5f91d91a46f3d
URL: https://github.com/kamailio/kamailio/commit/21c219bcdd3f74a029582cd353c5f91…
Author: Mikko Lehto <mslehto(a)iki.fi>
Committer: Mikko Lehto <mslehto(a)iki.fi>
Date: 2018-06-11T18:55:38+03:00
rtpproxy: mark RPC call with proper tag and small typo fix
---
Modified: src/modules/rtpproxy/doc/rtpproxy_admin.xml
Modified: src/modules/rtpproxy/rtpproxy.c
---
Diff: https://github.com/kamailio/kamailio/commit/21c219bcdd3f74a029582cd353c5f91…
Patch: https://github.com/kamailio/kamailio/commit/21c219bcdd3f74a029582cd353c5f91…
---
diff --git a/src/modules/rtpproxy/doc/rtpproxy_admin.xml b/src/modules/rtpproxy/doc/rtpproxy_admin.xml
index 618f7938ef..d7f9b6de15 100644
--- a/src/modules/rtpproxy/doc/rtpproxy_admin.xml
+++ b/src/modules/rtpproxy/doc/rtpproxy_admin.xml
@@ -98,7 +98,7 @@
<section id="rtpproxy.p.rtpproxy_sock">
<title><varname>rtpproxy_sock</varname> (string)</title>
<para>
- Used to define the list of RTPPRoxy instances to connect to.
+ Used to define the list of RTPProxy instances to connect to.
These can be UNIX sockets or IPv4/IPv6 UDP sockets.
Each modparam entry will insert sockets into a single set. If no set ID is given, the default set ID '0' will be used. To define multiple sets add the set number at the beginning of each parameter followed by '=='.
@@ -873,7 +873,7 @@ start_recording();
<section>
<title>RPC Commands</title>
<section id="rtpproxy.r.enable">
- <title>rtpproxy.enable</title>
+ <title><function>rtpproxy.enable</function></title>
<para>
Enables a rtp proxy if parameter value is greater than 0.
Disables it if a zero value is given.
diff --git a/src/modules/rtpproxy/rtpproxy.c b/src/modules/rtpproxy/rtpproxy.c
index 4251a9ac82..b0b7a67fcf 100644
--- a/src/modules/rtpproxy/rtpproxy.c
+++ b/src/modules/rtpproxy/rtpproxy.c
@@ -169,7 +169,7 @@ static int_str ice_candidate_priority_avp;
static str rtp_inst_pv_param = {NULL, 0};
static pv_spec_t *rtp_inst_pvar = NULL;
-/* array with the sockets used by rtpporxy (per process)*/
+/* array with the sockets used by rtpproxy (per process)*/
static unsigned int rtpp_no = 0;
static int *rtpp_socks = 0;
Module: kamailio
Branch: master
Commit: c1d106161819b86427a9ea7a6e6502c1922d4b6f
URL: https://github.com/kamailio/kamailio/commit/c1d106161819b86427a9ea7a6e6502c…
Author: Mikko Lehto <mslehto(a)iki.fi>
Committer: Mikko Lehto <mslehto(a)iki.fi>
Date: 2018-06-11T18:55:38+03:00
tmx: fix documentation typo
---
Modified: src/modules/tmx/doc/tmx_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/c1d106161819b86427a9ea7a6e6502c…
Patch: https://github.com/kamailio/kamailio/commit/c1d106161819b86427a9ea7a6e6502c…
---
diff --git a/src/modules/tmx/doc/tmx_admin.xml b/src/modules/tmx/doc/tmx_admin.xml
index fe630d2f76..19c808c931 100644
--- a/src/modules/tmx/doc/tmx_admin.xml
+++ b/src/modules/tmx/doc/tmx_admin.xml
@@ -216,7 +216,7 @@ if (t_reply_callid("123qaz", "5", "458", "Replied remotely")) {
</para>
<para>
It is not needed to execute this function when using t_relay() (or
- similar tm relay functions, flags are synchornized automatically in
+ similar tm relay functions, flags are synchronized automatically in
that case).
</para>
<para>
@@ -242,7 +242,7 @@ t_flush_flags();
</para>
<para>
It is not needed to execute this function when using t_relay() (or
- similar tm relay functions, xflags are synchornized automatically in
+ similar tm relay functions, xflags are synchronized automatically in
that case).
</para>
<para>