Module: kamailio
Branch: 5.7
Commit: e202f597e1725c204eb33fa7b6266d9ce934be09
URL:
https://github.com/kamailio/kamailio/commit/e202f597e1725c204eb33fa7b6266d9…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: Kamailio Dev <kamailio.dev(a)kamailio.org>
Date: 2023-09-25T20:02:22+02:00
modules: readme files regenerated - modules ... [skip ci]
---
Modified: src/modules/app_lua/README
Modified: src/modules/http_async_client/README
Modified: src/modules/mohqueue/README
Modified: src/modules/xhttp/README
Modified: src/modules/xlog/README
---
Diff:
https://github.com/kamailio/kamailio/commit/e202f597e1725c204eb33fa7b6266d9…
Patch:
https://github.com/kamailio/kamailio/commit/e202f597e1725c204eb33fa7b6266d9…
---
diff --git a/src/modules/app_lua/README b/src/modules/app_lua/README
index c4697435ee0..f8891270e1a 100644
--- a/src/modules/app_lua/README
+++ b/src/modules/app_lua/README
@@ -149,7 +149,7 @@ Chapter 1. Admin Guide
Set the path to the Lua script to be loaded at startup. Then you can
use lua_run(function, params) to execute a function from the script at
- runtime.
+ runtime. The script can be in Lua-source or bytecode.
Default value is ���null���.
diff --git a/src/modules/http_async_client/README b/src/modules/http_async_client/README
index 57eff8a890f..0caa3d4631f 100644
--- a/src/modules/http_async_client/README
+++ b/src/modules/http_async_client/README
@@ -146,7 +146,8 @@ Chapter 1. Admin Guide
The following libraries or applications must be installed before
running Kamailio with this module loaded:
- * libcurl libev
+ * libcurl -
https://curl.se/libcurl/
+ * libevent -
https://libevent.org/
3. Parameters
diff --git a/src/modules/mohqueue/README b/src/modules/mohqueue/README
index 5a0f746fac6..934b5fa145c 100644
--- a/src/modules/mohqueue/README
+++ b/src/modules/mohqueue/README
@@ -327,7 +327,7 @@ $var(mohq) = "operators";
volatile database in memory of call status. If the module is restarted
it loses the internal database and clears the external one.
- On a reqular basis it checks the external table that defines the queues
+ On a regular basis it checks the external table that defines the queues
to see if the definition has changed. It makes this check under the
following conditions: the queue has not been checked in the last 60
seconds AND no call is currently in queue or transitioning in or out.
diff --git a/src/modules/xhttp/README b/src/modules/xhttp/README
index 9a59c839aa1..ec009bacafb 100644
--- a/src/modules/xhttp/README
+++ b/src/modules/xhttp/README
@@ -83,8 +83,8 @@ Chapter 1. Admin Guide
SIP parser can easily handle HTTP requests just by adding a fake Via
header.
- The <module>xmlrpc</module> module uses the same concept. The xHTTP
- module offers a generic way of handling the HTTP protocol, by calling
+ The xmlrpc module uses the same concept. The xHTTP module offers a
+ generic way of handling the HTTP protocol, by calling
event_route[xhttp:request] in your config. You can check the HTTP URL
via the config variable $hu. Note that use of $ru will raise errors
since the structure of an HTTP URL is not compatible with that of a SIP
@@ -222,7 +222,10 @@ event_route[xhttp:request] {
6.1. xhttp:request
- The event route is executed when a new HTTP request is received.
+ The event route is executed when a new HTTP request is received. Most
+ of the variables related to a SIP request can be used inside this event
+ route to get HTTP request attributes (e.g., $si - source IP, $hdr(X) -
+ body of header X, $rm - request method, $rb - request body, ...).
...
tcp_accept_no_cl=yes
...
diff --git a/src/modules/xlog/README b/src/modules/xlog/README
index 6606c5d9ea1..b21766a6d95 100644
--- a/src/modules/xlog/README
+++ b/src/modules/xlog/README
@@ -266,7 +266,7 @@ kamcmd cfg.set_now_int xlog methods_filter 15
Example 1.8. Set methods_filter parameter
...
-modparam("xlog", "long_format", 1)
+modparam("xlog", "methods_filter", 15)
...
5. Functions