Module: kamailio
Branch: 5.3
Commit: ed3b9fca165a5005dfd4715776acafc1d32b77e5
URL: https://github.com/kamailio/kamailio/commit/ed3b9fca165a5005dfd4715776acafc…
Author: Sam Ware <sam.ware(a)gmail.com>
Committer: Henning Westerholt <hw(a)skalatan.de>
Date: 2020-01-12T12:15:31+01:00
xhttp_rpc: documentation correction
- The documentation in the README file had the
wrong module name in the modparam in the
example for the xhttp_rpc_buf_size parameter.
Corrected this in section 4.2.
(cherry picked from commit c9229d66136f41fda0082585c4a73baf503b2c2b)
---
Modified: src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/ed3b9fca165a5005dfd4715776acafc…
Patch: https://github.com/kamailio/kamailio/commit/ed3b9fca165a5005dfd4715776acafc…
---
diff --git a/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml b/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
index bffbe60530..56ef5f347a 100644
--- a/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
+++ b/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
@@ -125,7 +125,7 @@ modparam("xhttp_rpc", "xhttp_rpc_root", "http_rpc")
<title>Set <varname>xhttp_rpc_buf_size</varname> parameter</title>
<programlisting format="linespecific">
...
-modparam("xhttp", "xhttp_rpc_buf_size", 1024)
+modparam("xhttp_rpc", "xhttp_rpc_buf_size", 1024)
...
</programlisting>
</example>
Module: kamailio
Branch: 5.2
Commit: 7189b5cf877a15481ad83850de7008ad24bc1010
URL: https://github.com/kamailio/kamailio/commit/7189b5cf877a15481ad83850de7008a…
Author: Sam Ware <sam.ware(a)gmail.com>
Committer: Henning Westerholt <hw(a)skalatan.de>
Date: 2020-01-12T12:15:16+01:00
xhttp_rpc: documentation correction
- The documentation in the README file had the
wrong module name in the modparam in the
example for the xhttp_rpc_buf_size parameter.
Corrected this in section 4.2.
(cherry picked from commit c9229d66136f41fda0082585c4a73baf503b2c2b)
---
Modified: src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/7189b5cf877a15481ad83850de7008a…
Patch: https://github.com/kamailio/kamailio/commit/7189b5cf877a15481ad83850de7008a…
---
diff --git a/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml b/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
index bffbe60530..56ef5f347a 100644
--- a/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
+++ b/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
@@ -125,7 +125,7 @@ modparam("xhttp_rpc", "xhttp_rpc_root", "http_rpc")
<title>Set <varname>xhttp_rpc_buf_size</varname> parameter</title>
<programlisting format="linespecific">
...
-modparam("xhttp", "xhttp_rpc_buf_size", 1024)
+modparam("xhttp_rpc", "xhttp_rpc_buf_size", 1024)
...
</programlisting>
</example>
Module: kamailio
Branch: 5.1
Commit: 1abedff2c6673bd5132589946935c59d1cf2654d
URL: https://github.com/kamailio/kamailio/commit/1abedff2c6673bd5132589946935c59…
Author: Sam Ware <sam.ware(a)gmail.com>
Committer: Henning Westerholt <hw(a)skalatan.de>
Date: 2020-01-12T12:14:59+01:00
xhttp_rpc: documentation correction
- The documentation in the README file had the
wrong module name in the modparam in the
example for the xhttp_rpc_buf_size parameter.
Corrected this in section 4.2.
(cherry picked from commit c9229d66136f41fda0082585c4a73baf503b2c2b)
---
Modified: src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/1abedff2c6673bd5132589946935c59…
Patch: https://github.com/kamailio/kamailio/commit/1abedff2c6673bd5132589946935c59…
---
diff --git a/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml b/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
index bffbe60530..56ef5f347a 100644
--- a/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
+++ b/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
@@ -125,7 +125,7 @@ modparam("xhttp_rpc", "xhttp_rpc_root", "http_rpc")
<title>Set <varname>xhttp_rpc_buf_size</varname> parameter</title>
<programlisting format="linespecific">
...
-modparam("xhttp", "xhttp_rpc_buf_size", 1024)
+modparam("xhttp_rpc", "xhttp_rpc_buf_size", 1024)
...
</programlisting>
</example>
#### Pre-Submission Checklist
- [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:
- [X] PR should be backported to stable branches
- [X] Tested changes locally
- [X] Related to issue #XXXX (replace XXXX with an open issue number)
#### Description
- The documentation in the README file had the
wrong module name in the modparam in the
example for the xhttp_rpc_buf_size parameter.
Corrected this in section 4.2.
You can view, comment on, or merge this pull request online at:
https://github.com/kamailio/kamailio/pull/2195
-- Commit Summary --
* xhttp_rpc: documentation correction
-- File Changes --
M src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml (2)
-- Patch Links --
https://github.com/kamailio/kamailio/pull/2195.patchhttps://github.com/kamailio/kamailio/pull/2195.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/2195
Module: kamailio
Branch: master
Commit: c9229d66136f41fda0082585c4a73baf503b2c2b
URL: https://github.com/kamailio/kamailio/commit/c9229d66136f41fda0082585c4a73ba…
Author: Sam Ware <sam.ware(a)gmail.com>
Committer: Henning Westerholt <hw(a)skalatan.de>
Date: 2020-01-12T12:14:01+01:00
xhttp_rpc: documentation correction
- The documentation in the README file had the
wrong module name in the modparam in the
example for the xhttp_rpc_buf_size parameter.
Corrected this in section 4.2.
---
Modified: src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
---
Diff: https://github.com/kamailio/kamailio/commit/c9229d66136f41fda0082585c4a73ba…
Patch: https://github.com/kamailio/kamailio/commit/c9229d66136f41fda0082585c4a73ba…
---
diff --git a/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml b/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
index bffbe60530..56ef5f347a 100644
--- a/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
+++ b/src/modules/xhttp_rpc/doc/xhttp_rpc_admin.xml
@@ -125,7 +125,7 @@ modparam("xhttp_rpc", "xhttp_rpc_root", "http_rpc")
<title>Set <varname>xhttp_rpc_buf_size</varname> parameter</title>
<programlisting format="linespecific">
...
-modparam("xhttp", "xhttp_rpc_buf_size", 1024)
+modparam("xhttp_rpc", "xhttp_rpc_buf_size", 1024)
...
</programlisting>
</example>