Module: kamailio
Branch: 5.6
Commit: 3086494d7fa1ada9ce5f3ed851610a2fc542656a
URL: https://github.com/kamailio/kamailio/commit/3086494d7fa1ada9ce5f3ed851610a2…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2022-08-16T11:59:41+02:00
uac_redirect: clarifications for acc_function mod param
(cherry picked from commit 7ef109e6cd1ce7ecbfa56c31ff7555275e59095f)
---
Modified: src/modules/uac_redirect/doc/uac_redirect_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/3086494d7fa1ada9ce5f3ed851610a2…
Patch: https://github.com/kamailio/kamailio/commit/3086494d7fa1ada9ce5f3ed851610a2…
---
diff --git a/src/modules/uac_redirect/doc/uac_redirect_admin.xml b/src/modules/uac_redirect/doc/uac_redirect_admin.xml
index 1388fc740a4..71a448a6ae7 100644
--- a/src/modules/uac_redirect/doc/uac_redirect_admin.xml
+++ b/src/modules/uac_redirect/doc/uac_redirect_admin.xml
@@ -211,11 +211,14 @@ modparam("uac_redirect","accept_filter",".*(a)siphub\.net")
<section id="uac_redirect.p.acc_function">
<title><varname>acc_function</varname> (string)</title>
<para>
- Specifies the accounting function to be used. Just by defining
- this parameter, the accounting support will not be enabled.
- Accounting may only be enabled via two parameters
- <function moreinfo="none">set_accept_filter()</function>
- scripting function.
+ Specifies the accounting function to be used. Just by defining
+ this parameter, the accounting is not done automatically, it has to
+ be requested via parameters of
+ <function moreinfo="none">set_accept_filter()</function>
+ or other scripting function.
+ </para>
+ <para>
+ Set it to empty string in order to disable binding to acc module.
</para>
<para>
Its values may be:
@@ -248,13 +251,9 @@ modparam("uac_redirect","acc_function","acc_db_request")
<section id="uac_redirect.p.acc_db_table">
<title><varname>acc_db_table</varname> (string)</title>
<para>
- Specifies the accounting table to be used if DB accounting was
- chosen (<varname>acc_function</varname> was set to
- <quote>acc_db_request</quote>). Just by defining
- this parameter, the accounting support will not be enabled.
- Accounting may only be enabled via two parameters
- <function moreinfo="none">set_accept_filter()</function>
- scripting function.
+ Specifies the accounting table to be used if DB accounting was
+ chosen (<varname>acc_function</varname> was set to
+ <quote>acc_db_request</quote> or <quote>acc_request</quote>).
</para>
<para>
<emphasis>
Module: kamailio
Branch: 5.6
Commit: f1bd6bb8dec9db76acf697a7b1d177a2bfcfd7c1
URL: https://github.com/kamailio/kamailio/commit/f1bd6bb8dec9db76acf697a7b1d177a…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: 2022-08-16T11:58:14+02:00
nathelper: docs - rephrased the remarks about set_contact_alias()
(cherry picked from commit c009f27578e8df9aa77ab852325dad8dc710d6c8)
---
Modified: src/modules/nathelper/doc/nathelper_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/f1bd6bb8dec9db76acf697a7b1d177a…
Patch: https://github.com/kamailio/kamailio/commit/f1bd6bb8dec9db76acf697a7b1d177a…
---
diff --git a/src/modules/nathelper/doc/nathelper_admin.xml b/src/modules/nathelper/doc/nathelper_admin.xml
index d0e8a18ea4c..a8828baa74f 100644
--- a/src/modules/nathelper/doc/nathelper_admin.xml
+++ b/src/modules/nathelper/doc/nathelper_admin.xml
@@ -878,8 +878,10 @@ if(is_rfc1918("$rd")) {
<para>
Adds an <quote>;alias=ip~port~transport</quote> parameter to the
contact URI containing the received ip, port, and transport protocol.
- The new contact URI is immediately visible to other modules in the
- way the <function>fix_nated_contact()</function> does it.
+ The update of contact URI is signaled to a few other modules in the
+ way the <function>fix_nated_contact()</function> does it by using the
+ internal flags. The new value is not visible to pseudo-variables and it
+ does not change the SIP message buffer.
</para>
<para>Meaning of parameters:</para>
<itemizedlist>
<!-- 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
- [ ] 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 -->
Fixed an error in an example in the docfile
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/3217
-- Commit Summary --
* secfilter: machine-parsable data structure for RPC printing data
* secfilter: updated samples [skip ci]
* secfilter: fix examples [skip ci]
-- File Changes --
M src/modules/secfilter/doc/secfilter_admin.xml (121)
M src/modules/secfilter/secfilter_rpc.c (383)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/3217.patchhttps://github.com/kamailio/kamailio/pull/3217.diff
--
Reply to this email directly or view it on GitHub:
https://github.com/kamailio/kamailio/pull/3217
You are receiving this because you are subscribed to this thread.
Message ID: <kamailio/kamailio/pull/3217(a)github.com>