<!-- Kamailio Pull Request Template -->
<!--
IMPORTANT:
- for detailed contributing guidelines, read:
https://github.com/kamailio/kamailio/blob/master/.github/CONTRIBUTING.md
- pull requests must be done to master branch, unless they are backports
of fixes from master branch to a stable branch
- backports to stable branches must be done with 'git cherry-pick -x ...'
- code is contributed under BSD for core and main components (tm, sl, auth, tls)
- code is contributed GPLv2 or a compatible license for the other components
- GPL code is contributed with OpenSSL licensing exception
-->
#### Pre-Submission Checklist
<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply -->
<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above-->
<!-- If you're unsure about any of these, don't hesitate to ask on sr-dev mailing list -->
- [x] Commit message has the format required by CONTRIBUTING guide
- [x] Commits are split per component (core, individual modules, libs, utils, ...)
- [x] Each component has a single commit (if not, squash them into one commit)
- [x] No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [x] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
<!-- Go over all points below, and after creating the PR, tick the checkboxes that apply -->
- [x] PR should be backported to stable branches
- [ ] Tested changes locally
#### Description
If kamailio is in the shutdown phase proc timers should not be executed since memory objects are getting destroyed and cores could happen
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3649
-- Commit Summary --
* core: timer_proc don't execute timers on destroy_modules_phase
-- File Changes --
M src/core/timer_proc.c (19)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3649.patchhttps://github.com/kamailio/kamailio/pull/3649.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3649
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3649(a)github.com>
Module: kamailio
Branch: master
Commit: 9eeab4396d8ec57781244ab80c4a96539d7338ec
URL: https://github.com/kamailio/kamailio/commit/9eeab4396d8ec57781244ab80c4a965…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-28T10:20:41+01:00
jansson: docs updated for jansson_get_field()
---
Modified: src/modules/jansson/doc/jansson_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/9eeab4396d8ec57781244ab80c4a965…
Patch: https://github.com/kamailio/kamailio/commit/9eeab4396d8ec57781244ab80c4a965…
---
diff --git a/src/modules/jansson/doc/jansson_admin.xml b/src/modules/jansson/doc/jansson_admin.xml
index debc9cc5a19..daa5e9ea51e 100644
--- a/src/modules/jansson/doc/jansson_admin.xml
+++ b/src/modules/jansson/doc/jansson_admin.xml
@@ -56,10 +56,16 @@
<title>Functions</title>
<section id="jansson.f.jansson_get">
<title>
- <function moreinfo="none">jansson_get(key/path, src, dst)</function>
+ <function moreinfo="none">jansson_get(path, src, dst)</function>
</title>
<para>
- Copy the value at the location 'path' from the json object 'src' and store it in pvar 'dst'.
+ Copy the value at the location 'path' from the json object 'src'
+ and store it in variable 'dst'. The path can also be a simple field name
+ (a key), if it does not include any path separator. To retrieve the
+ value of a field that includes path separators in the name, use
+ jansson_get_field().
+ </para>
+ <para>
The 'src' can be a static string or a dynamic string with variables.
</para>
<para>
@@ -71,7 +77,7 @@
</para>
<para>
The function can put a string, integer, null, or new json string into destination.
- If the key/path can't be found in the JSON data structure, the pvar is not changed.
+ If the path can't be found in the JSON data structure, the pvar is not changed.
If it had a previous
value, that value remains unchanged.
</para>
@@ -280,22 +286,27 @@ jansson_xencode("a", "$var(js)");
</section>
<section id="jansson.f.jansson_get_field">
<title>
- <function moreinfo="none">jansson_get_field(src, field_name, dst)</function>
+ <function moreinfo="none">jansson_get_field(field_name, src, dst)</function>
</title>
<para>
- Copy field 'field_name' from json object 'src' and store it in pvar 'dst'.
+ Copy the value of the field 'field_name' from json object 'src'
+ and store it in pvar 'dst'. The field name is not evaluated as JSON
+ path, therefore it has a different behaviour than jansson_get() and
+ can be used when the field name contains path delimiters.
</para>
<para>
- <emphasis>This function is deprecated</emphasis> but kept for backwards compatibility.
- Right now it is just a wrapper around <function>jansson_get</function>, and its
- functionality is the same.
+ Note that till version 5.7.x, this function was similar to jansson_get(),
+ after that its behaviour changed to work as described above. Also,
+ the order of parameters changed.
</para>
<example>
<title><function>jansson_get_field</function> usage</title>
<programlisting format="linespecific">
...
-jansson_get_field("{'foo':'bar'}", "foo", "$var(foo)");
+jansson_get_field("foo", "{'foo':'bar'}", "$var(foo)");
xlog("foo is $var(foo)");
+jansson_get_field("foo.foz", "{'foo.foz':'bar.buz'}", "$var(foofoz)");
+xlog("foo.foz is $var(foofoz)");
...
</programlisting>
</example>
Hello,
during the Kamailio Development Meeting that took place in Dusseldorf
earlier this month, one topic was related to administrative tasks
related to project development and management, how to
simplify/automatize such tasks.
To reduce the work load on volunteering contributors, GitHub Actions
were already used for various tasks related to project development and
management (e.g., automatic builds on commits and pull requests to
detect compile errors or code formatting mistakes).
In Dusseldorf another task was configured to be managed with GitHub
Actions, respectively the check of open issues and pull requests to
evaluate the interest of submitters, developers and community users to
pursue them. If there is no activity on an issue (potential bug or
feature request) or a pull request, after 6 weeks it is marked with the
label `stale`. After two more weeks of no activity, the issue or the
pull request is marked with the label `expired` and closed. Note that
any comment postpones the expire timeline, being considered that there
is interest in pursuing the issue or the pull request.
Requests for features were already treated in this way: if nobody
commits to implement it, it can be closed after one month, but it needed
manual work and many were still kept open. Potential bug reports that
become very old are hard to tackle if the source code changes or new
major releases are out, they might even not be valid anymore.
Anyhow, this automatic operations can be reverted if there is still
interest in pursuing the specific issues or pull requests. A registered
developer can remove labels and reopen a closed issue or pull request.
The non-registered-developer contributors have to make a comment that
includes the token `/notstale` to remove the label `stale` or includes
the token `/notexpired` to reopen a closed item.
This new kind of automatic task management might add a little
inconvenience because one has to restate the interest from time to time
for those items that could not be addressed. However, considering that
Kamailio is an open source collaborative project, in order to be fair
for those that volunteer to spend time and resources for development of
Kamailio, also the users/submitters have to stay engaged, not just
report and forget about.
The process to automatize tasks related to Kamailio development and
administration is work in progress. Everything can be adjusted based on
feedback (e.g., time lines), feel free to suggest improvements or new
solutions to make things easier for everyone within the project ecosystem.
Cheers,
Daniel
--
Daniel-Constantin Mierla (@ asipto.com)
twitter.com/miconda -- linkedin.com/in/miconda
Kamailio Consultancy and Development Services
Kamailio Advanced Training -- asipto.com
Module: kamailio
Branch: master
Commit: 4840ea7536610d07ad6fda76da60ded04dfeabc7
URL: https://github.com/kamailio/kamailio/commit/4840ea7536610d07ad6fda76da60ded…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-27T19:23:36+01:00
.github/CONTRIBUTING.md: section for issue and pr automatic management
---
Modified: .github/CONTRIBUTING.md
---
Diff: https://github.com/kamailio/kamailio/commit/4840ea7536610d07ad6fda76da60ded…
Patch: https://github.com/kamailio/kamailio/commit/4840ea7536610d07ad6fda76da60ded…
---
diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md
index 2c5d46842b8..e01dd82c3ce 100644
--- a/.github/CONTRIBUTING.md
+++ b/.github/CONTRIBUTING.md
@@ -20,6 +20,7 @@ changes to this document in a pull request.
* [Commit Message Examples](#commit-message-examples)
* [See Also](#see-also)
* [Reporting Issues](#reporting-issues)
+ * [Issue And PR Automatic Management](#issue-and-pr-automatic-management)
* [License](#license)
* [License Of New Code Contributions](#license-of-new-code-contributions)
* [Further Assistance](#further-assistance)
@@ -251,6 +252,32 @@ Note: replace any sensitive information in the content you add to the issue
(e.g., passwords in modparams can be replaced with xyz, each IP address can be
replaced with tokens like a.b.c.d, f.g.h.j).
+## Issue And PR Automatic Management ##
+
+This section presents details about the automatic management of potential bug
+reports and requests for new features using github actions.
+
+Kamailio is an open source collaborative project, in order to be fair for those
+that volunteer to spend time and resources for development of Kamailio, the users
+have to stay engaged, not just report and forget about.
+
+To reduce the work load on volunteering contributors, GitHub Actions are used
+for various tasks related to project development and management (e.g., automatic
+builds on commits and pull requests to detect compile errors or code formatting
+mistakes).
+
+One task managed with GitHub Actions is related to the check of open
+issues and pull requests to evaluate the interest of submitter, developers and
+community users. If there is no activity on an issue (potential bug or feature
+request) or a pull request, after 6 weeks it is marked with the label `stale`.
+After two more weeks of no activity, the issue or the pull request is marked
+with the label `expired` and closed.
+
+A registered developer can remove labels and reopen a closed issue or pull
+request. The other contributors have to make a comment that includes the token
+`/notstale` to remove the label `stale` or includes the token `/notexpired` to
+reopen a closed item.
+
## License ##
Kamailio Main License: *GPLv2*.
Module: kamailio
Branch: master
Commit: 96300556ea4787f6f99926dcc7305ec6e4e3df75
URL: https://github.com/kamailio/kamailio/commit/96300556ea4787f6f99926dcc7305ec…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-27T17:11:53+01:00
.github/ISSUE_TEMPLATE: notes about expiration of items and how to reopen
---
Modified: .github/ISSUE_TEMPLATE/bug_report.md
Modified: .github/ISSUE_TEMPLATE/feature_request.md
---
Diff: https://github.com/kamailio/kamailio/commit/96300556ea4787f6f99926dcc7305ec…
Patch: https://github.com/kamailio/kamailio/commit/96300556ea4787f6f99926dcc7305ec…
---
diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md
index e657ee1a979..01b1672bbb7 100644
--- a/.github/ISSUE_TEMPLATE/bug_report.md
+++ b/.github/ISSUE_TEMPLATE/bug_report.md
@@ -17,6 +17,15 @@ If you have questions about developing extensions to Kamailio or its existing C
Please try to fill this template as much as possible for any issue. It helps the developers to troubleshoot the issue.
+Note that an issue report may be closed automatically after about 2 months
+if there is no interest from developers or community users on pursuing it, being
+considered expired. In such case, it can be reopened by writing a comment that includes
+the token `/notexpired`. About two weeks before considered expired, the issue is
+marked with the label `stale`, trying to notify the submitter and everyone else
+that might be interested in it. To remove the label `stale`, write a comment that
+includes the token `/notstale`. Also, any comment postpone the `expire` timeline,
+being considered that there is interest in pursuing the issue.
+
If there is no content to be filled in a section, the entire section can be removed.
You can delete the comments from the template sections when filling.
diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md
index 2c21427e600..6206cee95c7 100644
--- a/.github/ISSUE_TEMPLATE/feature_request.md
+++ b/.github/ISSUE_TEMPLATE/feature_request.md
@@ -21,6 +21,15 @@ If you submit a feature request (or enhancement) add the description of what you
If there is no content to be filled in a section, the entire section can be removed.
+Note that a feature request may be closed automatically after about 2 months
+if there is no interest from developers or community users to implement it, being
+considered expired. In such case can be reopened by writing a comment that includes
+the token `/notexpired`. About two weeks before considered expired, the item is
+marked with the label `stale`, trying to notify the submitter and everyone else
+that might be interested in it. To remove the label `stale`, write a comment that
+includes the token `/notstale`. Also, any comment postpone the `expire` timeline,
+being considered that there is interest in the proposed feature request.
+
You can delete the comments from the template sections when filling.
You can delete next line and everything above before submitting (it is a comment).
Module: kamailio
Branch: master
Commit: 5a65791e3959439a699d746ce8e63d438e8db0a5
URL: https://github.com/kamailio/kamailio/commit/5a65791e3959439a699d746ce8e63d4…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2023-11-27T14:17:09+01:00
modules: readme files regenerated - topoh ... [skip ci]
---
Modified: src/modules/topoh/README
---
Diff: https://github.com/kamailio/kamailio/commit/5a65791e3959439a699d746ce8e63d4…
Patch: https://github.com/kamailio/kamailio/commit/5a65791e3959439a699d746ce8e63d4…
---
diff --git a/src/modules/topoh/README b/src/modules/topoh/README
index f1a761bf8f9..0217b90d30f 100644
--- a/src/modules/topoh/README
+++ b/src/modules/topoh/README
@@ -162,12 +162,12 @@ modparam("topoh", "mask_key", "some secret here")
IP address to be used in masked headers to build valid SIP URIs. Can be
any IP address, even a private-space or non-existing IP address (e.g.,
192.168.1.1, 127.0.0.2), including the SIP server address, but must not
- be an address potentially used by clients. If not set, the advertised
- IP of the incoming or outgoing socket is used. If there is no
- advertised IP, the IP of the socket is used. It is not used at all for
- SIP routing.
+ be an address potentially used by clients. If set to empty string, the
+ advertised IP of the incoming or outgoing socket is used when
+ specified, otherwise the IP of the socket is used. Note that the value
+ is actually not used at all for SIP routing.
- Default value is empty.
+ Default value is "127.0.0.8".
Example 1.2. Set mask_ip parameter
...
Module: kamailio
Branch: master
Commit: 52cee630d367287daa4b15c042b25bec76192e80
URL: https://github.com/kamailio/kamailio/commit/52cee630d367287daa4b15c042b25be…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2023-11-27T14:02:31+01:00
modules: readme files regenerated - topoh ... [skip ci]
---
Modified: src/modules/topoh/README
---
Diff: https://github.com/kamailio/kamailio/commit/52cee630d367287daa4b15c042b25be…
Patch: https://github.com/kamailio/kamailio/commit/52cee630d367287daa4b15c042b25be…
---
diff --git a/src/modules/topoh/README b/src/modules/topoh/README
index 2fa0f4fd398..f1a761bf8f9 100644
--- a/src/modules/topoh/README
+++ b/src/modules/topoh/README
@@ -162,10 +162,12 @@ modparam("topoh", "mask_key", "some secret here")
IP address to be used in masked headers to build valid SIP URIs. Can be
any IP address, even a private-space or non-existing IP address (e.g.,
192.168.1.1, 127.0.0.2), including the SIP server address, but must not
- be an address potentially used by clients. It is not used at all for
+ be an address potentially used by clients. If not set, the advertised
+ IP of the incoming or outgoing socket is used. If there is no
+ advertised IP, the IP of the socket is used. It is not used at all for
SIP routing.
- Default value is "127.0.0.8".
+ Default value is empty.
Example 1.2. Set mask_ip parameter
...
<!-- Kamailio Pull Request Template -->
<!--
IMPORTANT:
- for detailed contributing guidelines, read:
https://github.com/kamailio/kamailio/blob/master/.github/CONTRIBUTING.md
- pull requests must be done to master branch, unless they are backports
of fixes from master branch to a stable branch
- backports to stable branches must be done with 'git cherry-pick -x ...'
- code is contributed under BSD for core and main components (tm, sl, auth, tls)
- code is contributed GPLv2 or a compatible license for the other components
- GPL code is contributed with OpenSSL licensing exception
-->
#### Pre-Submission Checklist
<!-- Go over all points below, and after creating the PR, tick all the checkboxes that apply -->
<!-- All points should be verified, otherwise, read the CONTRIBUTING guidelines from above-->
<!-- If you're unsure about any of these, don't hesitate to ask on sr-dev mailing list -->
- [x] Commit message has the format required by CONTRIBUTING guide
- [x] Commits are split per component (core, individual modules, libs, utils, ...)
- [x] Each component has a single commit (if not, squash them into one commit)
- [ ] No commits to README files for modules (changes must be done to docbook files
in `doc/` subfolder, the README file is autogenerated)
#### Type Of Change
- [ ] Small bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds new functionality)
- [ ] Breaking change (fix or feature that would change existing functionality)
#### Checklist:
<!-- Go over all points below, and after creating the PR, tick the checkboxes that apply -->
- [ ] PR should be backported to stable branches
- [ ] Tested changes locally
- [ ] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
<!-- Describe your changes in detail -->
topoh: uses socket IP when no mask_ip is defined
If the parameter mask_ip is not defined the module finds the socket IP
and uses that as mask IP for the message.
If the socket has an advertised IP it is used, otherwise the socket IP is used.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3341
-- Commit Summary --
* topoh: uses socket IP when no mask_ip is defined
* Merge remote-tracking branch 'upstream/master'
-- File Changes --
M src/modules/topoh/doc/topoh_admin.xml (4)
M src/modules/topoh/th_msg.c (55)
M src/modules/topoh/th_msg.h (16)
M src/modules/topoh/topoh_mod.c (309)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3341.patchhttps://github.com/kamailio/kamailio/pull/3341.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3341
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3341(a)github.com>
Module: kamailio
Branch: master
Commit: 8bfe55c68a06492c93a327eff6813fa0da8399dd
URL: https://github.com/kamailio/kamailio/commit/8bfe55c68a06492c93a327eff6813fa…
Author: TorPetterson <32388321+TorPetterson(a)users.noreply.github.com>
Committer: GitHub <noreply(a)github.com>
Date: 2023-11-27T13:50:09+01:00
topoh: uses socket IP when no mask_ip is defined (#3341)
* topoh: uses socket IP when no mask_ip is defined
If the parameter mask_ip is not defined the module finds the socket IP
and uses that as mask IP for the message.
If the socket has an advertised IP it is used, otherwise the socket IP is used.
---
Modified: src/modules/topoh/doc/topoh_admin.xml
Modified: src/modules/topoh/th_msg.c
Modified: src/modules/topoh/th_msg.h
Modified: src/modules/topoh/topoh_mod.c
---
Diff: https://github.com/kamailio/kamailio/commit/8bfe55c68a06492c93a327eff6813fa…
Patch: https://github.com/kamailio/kamailio/commit/8bfe55c68a06492c93a327eff6813fa…
Module: kamailio
Branch: master
Commit: f7caef5d4ba3fde04425b6480badcacc14f4f6e6
URL: https://github.com/kamailio/kamailio/commit/f7caef5d4ba3fde04425b6480badcac…
Author: Wolfgang Kampichler <dev(a)kampichler.info>
Committer: Wolfgang Kampichler <dev(a)kampichler.info>
Date: 2023-11-25T11:06:21+01:00
lost: support of shape representations (as in RFC5491) and new 3d parameter
- A Presence Information Data Format Location Object (PIDF-LO) may
contain one of the shape types as listed in RFC5491. A LoST
findService request currently contains only a profile for
two-dimensional geodetic location information, which
is the default setting for this 3d parameter. The parameter
can be set to 1 if a LoST server supports 3d, otherwise a
3d location is reduced to 2d by the module.
---
Modified: src/modules/lost/doc/lost_admin.xml
Modified: src/modules/lost/functions.c
Modified: src/modules/lost/lost.c
Modified: src/modules/lost/response.c
Modified: src/modules/lost/utilities.c
Modified: src/modules/lost/utilities.h
---
Diff: https://github.com/kamailio/kamailio/commit/f7caef5d4ba3fde04425b6480badcac…
Patch: https://github.com/kamailio/kamailio/commit/f7caef5d4ba3fde04425b6480badcac…
- URL: https://github.com/kamailio/kamailio/commit/8779039f655e6cdc27c35a0145985de…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T12:58:52+01:00
core: resolve - cast after pointer operations for RES_AR
(cherry picked from commit 30c42aab767d777e3beb1493165458489957e92d)
- URL: https://github.com/kamailio/kamailio/commit/55584b4de5ac60a1385edf245fc7f5b…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T12:59:09+01:00
core/mem: tlsf - cast to char* for pointer operations
(cherry picked from commit d0a353342b559191aafc732174773e132554694a)
- URL: https://github.com/kamailio/kamailio/commit/d2f5603aff1bad106340b024d4a33f2…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T12:59:23+01:00
core: resolve - variables initialisation
(cherry picked from commit 1623f9ed1728455b72abf0a74f06bfd24365cefb)
- URL: https://github.com/kamailio/kamailio/commit/4d04bafdba440b82a7da8424682b06d…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T12:59:38+01:00
app_python3: reformat exports structures
(cherry picked from commit 042bb9d10e12a256f9e4461031347e09b89fbe98)
- URL: https://github.com/kamailio/kamailio/commit/986cadb088805f5126c61d55fc0b72c…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T12:59:45+01:00
app_python3: use module name prefix for exports structure
(cherry picked from commit 114d6fe510d7c1876782054ed89e4017d39d5f69)
- URL: https://github.com/kamailio/kamailio/commit/340efb9e3951fb4d15ae32e834ac584…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T12:59:53+01:00
app_python3s: reformat exports structures
(cherry picked from commit 9fb9cbddee8974a1733b999807cc1943248753f7)
- URL: https://github.com/kamailio/kamailio/commit/d38cc3c15698b554c177e77e05f7393…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:00:00+01:00
app_python3s: use module name prefix for exports structure
(cherry picked from commit ebe77a2068c5073b436a1f8fefdfd689c9010816)
- URL: https://github.com/kamailio/kamailio/commit/ef9c5e79b6923401a686c31a15af390…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:00:07+01:00
app_lua: reformat exports structures
(cherry picked from commit c6feb52c97bbd3fc33dc837d2b23e56c75f09583)
- URL: https://github.com/kamailio/kamailio/commit/2442079e05b410cc9393fd15daf1f94…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:00:14+01:00
app_lua: use module name prefix for exports structure
(cherry picked from commit 35e191e1bea5463e766cb6f8f2ffb4862bd812a8)
- URL: https://github.com/kamailio/kamailio/commit/8c5a7a8db1309515a1d2f167754a4ee…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:00:50+01:00
app_jsdt: use module name prefix for exports structure
(cherry picked from commit a81e3c45dad338378fc8cf417bb0e9da1172a854)
- URL: https://github.com/kamailio/kamailio/commit/069876708076154387a599bf039edd8…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:01:00+01:00
app_ruby: use module name prefix for exports structure
(cherry picked from commit 65322a8ea66ed18fb2d089ade54702341e064944)
- URL: https://github.com/kamailio/kamailio/commit/3ab5e87f2e162704a261c3a45eeb5c0…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:01:12+01:00
textops: do not print module name in log messages
- it is added automatically
(cherry picked from commit ba1c0424732f1f2ab01bfd078ee272221a6b3e10)
- URL: https://github.com/kamailio/kamailio/commit/c97e6b96821f0ffaf449643ed222908…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:01:19+01:00
avpops: do not print module name in log messages
- it is added automatically
(cherry picked from commit 89a95ce1abefd772c0f09054473b07bbfc5426bc)
- URL: https://github.com/kamailio/kamailio/commit/48fd5246c186524413d452032320378…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:01:26+01:00
avp: do not print module name in log messages
- it is added automatically
(cherry picked from commit 463d5b34390e330a2b733deb673c1c77e5be9fcb)
- URL: https://github.com/kamailio/kamailio/commit/84b1543cf7b77bfffba0c3e6369b4cb…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:01:33+01:00
dialog: do not print module name in log messages
- it is added automatically
(cherry picked from commit e45c97d112c7c396ae0a11b7a431582a71361e5b)
- URL: https://github.com/kamailio/kamailio/commit/d343b6d99cdb9a23ec5bfa332a34245…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:01:44+01:00
dialog: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit d434270933f06b4de43cdf6d4b464bd264a3cb92)
- URL: https://github.com/kamailio/kamailio/commit/583a403d58c3e0e0b64a354d2e5fe4a…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:01:51+01:00
http_async_client: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit 40dd9f4e0fbe54046b7786e3572b491103af03d1)
- URL: https://github.com/kamailio/kamailio/commit/c8a09510204e7d0ed9e486f4dc87135…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:01:59+01:00
imc: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit 407168804cc1806b857c2ce78399e02a81692d1e)
- URL: https://github.com/kamailio/kamailio/commit/6f3f297ea64a8fed4c77fdaf2abc90e…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:02:08+01:00
ims_auth: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit 524eeca084e0a0e61ad80f349ea79f8b1c3031f6)
- URL: https://github.com/kamailio/kamailio/commit/b5a2b0c782a18cd807d6d4851baa9be…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:02:18+01:00
ims_icscf: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit 39514660001b37eabfe3af6818949586fae9a4bf)
- URL: https://github.com/kamailio/kamailio/commit/e96ecec877f2f9bc13000c7bd752ed8…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:02:29+01:00
ims_registrar_scscf: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit 641d29820f8536247c49d5fb4caa882764dbd9af)
- URL: https://github.com/kamailio/kamailio/commit/876fa1d0667acb2c46e5b8643cdb994…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:02:48+01:00
ims_usrloc_pcscf: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit d29b3d6515f74d4cd7417dc9030d8ca53d57054e)
- URL: https://github.com/kamailio/kamailio/commit/51937a32b205288ebeddfac7c4310b1…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:02:57+01:00
msilo: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit 609960812c572d2d19ba774b064fdf7e2ac45765)
- URL: https://github.com/kamailio/kamailio/commit/21f4e3c9ce4a6d7ae87ad746742b283…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:03:03+01:00
nat_traversal: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit f35f327a528670dcca0d7a767643a222f1aebd89)
- URL: https://github.com/kamailio/kamailio/commit/59c32aef1e40edcfb081a18728b4e60…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:03:10+01:00
p_usrloc: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit a951cb44ecbcd0f9cba937176ea5117c6a1d15b6)
- URL: https://github.com/kamailio/kamailio/commit/1467f7517b6256a712eeb9328856193…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:03:17+01:00
registrar: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit 0516fb802628ddb659a130aa2959df5b0b8e0c96)
- URL: https://github.com/kamailio/kamailio/commit/9a658e0533e592641f86db037eb398a…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:03:26+01:00
sipcapture: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit 01abed3ef17f6a5f0f215675a2980f0b9a4267fd)
- URL: https://github.com/kamailio/kamailio/commit/9a768e006eb0b6ab508ebc5385690eb…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:03:33+01:00
siptrace: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit 92cdcb4bd280850743b3a952f1b6003be69daaf2)
- URL: https://github.com/kamailio/kamailio/commit/21abe7ab16d450f1b085a97a4c0f416…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:03:39+01:00
sst: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit 96bdd69945af9f08e6c89fb725248b8b268ee71a)
- URL: https://github.com/kamailio/kamailio/commit/d5829f56bfc36133ba6db124bf738a6…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:03:56+01:00
tmx: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit d4c0e1bbcb0e423a545650aad4fbb4b2da8bb488)
- URL: https://github.com/kamailio/kamailio/commit/bf665fc6d398009a0643cb60f9dad95…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:04:03+01:00
tsilo: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit a9d29645ab417c9b0f7afc6745e6dd54bdac07b4)
- URL: https://github.com/kamailio/kamailio/commit/292c8764b22d3cdb78a85f101b03594…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:04:10+01:00
usrloc: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit 186ae3eef7f3e1b5ad6222c98a2f35a487deb316)
- URL: https://github.com/kamailio/kamailio/commit/1de0032363ffb0fb6e257497a173f70…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:04:20+01:00
websocket: use literal module name for stats group
- prevent conflicts with global exports
(cherry picked from commit 93609b53d70df84788741800fc2b80c5502a3358)
- URL: https://github.com/kamailio/kamailio/commit/7f07a6ef9ae90baee4281394d0dcf50…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2023-11-24T13:04:28+01:00
Makefile.groups: tlsa in packaging group ktls if KTLS_INCLUDE_TLSA=yes
- if not, then it is in separate group module_group_ktlsa
(cherry picked from commit a49c8d8d968e31a539e47db6c06a0756e4be55e3)