You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kamailio/modules/sl/doc/sl_params.xml

65 lines
1.5 KiB

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE section PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
"http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
<section id="sl.parameters" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>Parameters</title>
<section id="default_code">
<title><varname>default_code</varname> (int)</title>
<para>
Default reply status code.
</para>
<para>
Default value is 500.
</para>
<example>
<title>default_code example</title>
<programlisting format="linespecific">
...
modparam("sl", "default_code", 505)
...
</programlisting>
</example>
</section>
<section id="default_reason">
<title><varname>default_reason</varname> (str)</title>
<para>
Default reply reason phrase.
</para>
<para>
Default value is 'Internal Server Error'.
</para>
<example>
<title>default_reason example</title>
<programlisting format="linespecific">
...
modparam("sl", "default_reason", "Server Error")
...
</programlisting>
</example>
</section>
<section id="bind_tm">
<title><varname>bind_tm</varname> (int)</title>
<para>
Controls if SL module should attempt to bind to TM module in order
to send stateful reply when the transaction is created.
</para>
<para>
Default value is 1 (enabled).
</para>
<example>
<title>bind_tm example</title>
<programlisting format="linespecific">
...
modparam("sl", "bind_tm", 0) # feature disabled
...
</programlisting>
</example>
</section>
</section>