Module: kamailio
Branch: 5.5
Commit: 139890860907e4f2fc55e05e2e9fe490fc76c4e1
URL:
https://github.com/kamailio/kamailio/commit/139890860907e4f2fc55e05e2e9fe49…
Author: Kamailio Dev <kamailio.dev(a)kamailio.org>
Committer: The Root <root(a)kamailio.org>
Date: 2021-08-20T10:01:16+02:00
modules: readme files regenerated - modules ... [skip ci]
---
Modified: src/modules/htable/README
Modified: src/modules/http_client/README
Modified: src/modules/websocket/README
Modified: src/modules/xhttp/README
---
Diff:
https://github.com/kamailio/kamailio/commit/139890860907e4f2fc55e05e2e9fe49…
Patch:
https://github.com/kamailio/kamailio/commit/139890860907e4f2fc55e05e2e9fe49…
---
diff --git a/src/modules/htable/README b/src/modules/htable/README
index 85f19c7102..25d6769065 100644
--- a/src/modules/htable/README
+++ b/src/modules/htable/README
@@ -1065,7 +1065,7 @@ kamcmd htable.sets test x[0] abc
kamcmd htable.seti test x 123
# Set first entry in array key x $sht(test=>x[0]) as integer
-kamcmd htable.sets test x[0] 123
+kamcmd htable.seti test x[0] 123
...
6.5. htable.dump htable
diff --git a/src/modules/http_client/README b/src/modules/http_client/README
index 0028f9e623..a3de550a2b 100644
--- a/src/modules/http_client/README
+++ b/src/modules/http_client/README
@@ -503,7 +503,7 @@ modparam("http_client", "keep_connections", 1)
Valid values are:
* 0 - Return the entire HTTP result body
- * 1 - Return the first oine from HTTP result body
+ * 1 - Return the first line from HTTP result body
Default value: 1 (return first line).
diff --git a/src/modules/websocket/README b/src/modules/websocket/README
index 7ac759b205..cbe8fd98eb 100644
--- a/src/modules/websocket/README
+++ b/src/modules/websocket/README
@@ -162,6 +162,8 @@ Chapter 1. Admin Guide
Example 1.1. event_route[xhttp:request]
...
+tcp_accept_no_cl=yes
+...
loadmodule "sl.so"
loadmodule "xhttp.so"
loadmodule "msrp.so" # Only required if using MSRP over WebSockets
diff --git a/src/modules/xhttp/README b/src/modules/xhttp/README
index a38599775f..781ac41392 100644
--- a/src/modules/xhttp/README
+++ b/src/modules/xhttp/README
@@ -220,6 +220,11 @@ event_route[xhttp:request] {
The event route is executed when a new HTTP request is received.
...
+tcp_accept_no_cl=yes
+...
+loadmodule "sl.so"
+loadmodule "xhttp.so
+...
event_route[xhttp:request] {
xhttp_reply("200", "OK", "text/html",
"<html><body>OK - [$si:$sp]</body></html>");