- replaced ser with kamailio in a few examples
... | ... |
@@ -73,7 +73,7 @@ |
73 | 73 |
<programlisting> |
74 | 74 |
loadmodule "ctl" |
75 | 75 |
# optional listen addresses, if no one is specified, |
76 |
-# ctl will listen on unixs:/tmp/ser_ctl |
|
76 |
+# ctl will listen on unixs:/tmp/kamailio_ctl |
|
77 | 77 |
|
78 | 78 |
modparam("ctl", "binrpc", "unix:/run/&kamailiobinary;/&kamailiobinary;_ctl") # default |
79 | 79 |
modparam("ctl", "binrpc", "udp:localhost:2046") |
... | ... |
@@ -92,7 +92,8 @@ modparam("ctl", "binrpc", "udp:*:3012") # udp any , port 3012 |
92 | 92 |
<section id="binrpc_buffer_size"> |
93 | 93 |
<title><varname>binrpc_buffer_size</varname> (integer or string)</title> |
94 | 94 |
<para> |
95 |
- the size of the internal buffer. |
|
95 |
+ The size of the internal buffer used for printing elements of the RPC |
|
96 |
+ response (e.g., internal RPC printf()). The value is given in bytes. |
|
96 | 97 |
</para> |
97 | 98 |
<para> |
98 | 99 |
Default: 1024. |
... | ... |
@@ -167,7 +168,7 @@ modparam("ctl", "group", 100) |
167 | 168 |
The fifo protocol can be run over a real fifo, over UDP or over TCP. |
168 | 169 |
Format: [protocol:]path|address. |
169 | 170 |
If no protocol is specified the default is "fifo". |
170 |
- Examples: "fifo:/tmp/ser_fifo", "/tmp/ser_fifo2", "udp:*:2050", |
|
171 |
+ Examples: "fifo:/tmp/kamailio_fifo", "/tmp/kamailio_fifo2", "udp:*:2050", |
|
171 | 172 |
"tcp:localhost:2050". |
172 | 173 |
For more details on the UDP and TCP formats see |
173 | 174 |
<varname>binrpc</varname>. |
... | ... |
@@ -183,8 +184,8 @@ modparam("ctl", "group", 100) |
183 | 184 |
<programlisting> |
184 | 185 |
... |
185 | 186 |
# old fifo support |
186 |
-modparam("ctl", "fifo", "fifo:/tmp/ser_fifo") # classic fifo |
|
187 |
-modparam("ctl", "fifo", "/tmp/ser_fifo2") |
|
187 |
+modparam("ctl", "fifo", "fifo:/tmp/kamailio_fifo") # classic fifo |
|
188 |
+modparam("ctl", "fifo", "/tmp/kamailio_fifo2") |
|
188 | 189 |
modparam("ctl", "fifo", "udp:*:2050") # fifo protocol over udp |
189 | 190 |
modparam("ctl", "fifo", "tcp:*:2050") # fifo over tcp |
190 | 191 |
... |