You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/FreeSWITCH-Explained/Configuration/Sofia-SIP-Stack/Sofia-Configuration-Files_7144453.mdx
+21-19
Original file line number
Diff line number
Diff line change
@@ -962,7 +962,7 @@ _Default: false_
962
962
963
963
If true, it passes [RFC 2833](https://tools.ietf.org/html/rfc2833) DTMF's from one side of a bridge to the other, untouched. Otherwise, it decodes and re-encodes them before passing them on.
964
964
965
-
<param name="pass-rfc2833" value="true"/>
965
+
`<param name="pass-rfc2833" value="true"/>`
966
966
967
967
###### liberal-dtmf
968
968
@@ -971,21 +971,21 @@ TODO [RFC 2833](https://tools.ietf.org/html/rfc2833) is obsoleted by [RFC 4733](
971
971
_Default: false_
972
972
For DTMF negotiation, use this parameter to just always offer 2833 and accept both 2833 and INFO. Use of this parameter is not recommended since its purpose is to try to cope with buggy SIP implementations.
973
973
974
-
<param name="liberal-dtmf" value="true"/>
974
+
`<param name="liberal-dtmf" value="true"/>`
975
975
976
976
##### SIP Related options
977
977
978
978
###### enable-timer
979
979
980
980
This enables or disables support for [RFC 4028](http://tools.ietf.org/html/rfc4028) SIP Session Timers.
981
981
982
-
<param name="enable-timer" value="false"/>
982
+
`<param name="enable-timer" value="false"/>`
983
983
984
984
###### session-timeout
985
985
986
986
session timers for all call to expire after the specified seconds Then it will send another invite (re-invite). If not specified defaults to 30 minutes. Some gateways may reject values less than 30 minutes. This values refers to Session-Expires in [RFC 4028](http://tools.ietf.org/html/rfc4028) (The time at which an element will consider the session timed out, if no successful session refresh transaction occurs beforehand)
987
987
988
-
<param name="session-timeout" value="1800"/>
988
+
`<param name="session-timeout" value="1800"/>`
989
989
990
990
Note: If your switch requires the timer option; for instance, Huawei SoftX3000, it needs this optional field and drops the calls with "Session Timer Check Message Failed", then you may be able to revert back the commit that took away the Require: timer option which is an optional field by:
991
991
@@ -999,21 +999,21 @@ make mod_sofia-install
999
999
1000
1000
This enable support for 100rel (100% reliability - PRACK message as defined in [RFC3262](http://tools.ietf.org/html/rfc3262)) This fixes a problem with SIP where provisional messages like "180 Ringing" are not ACK'd and therefore could be dropped over a poor connection without retransmission. \*2009-07-08:\* Enabling this may cause FreeSWITCH to crash, see [FSCORE-392](http://jira.freeswitch.org/browse/FSCORE-392).
1001
1001
1002
-
<param name="enable-100rel" value="true"/>
1002
+
`<param name="enable-100rel" value="true"/>`
1003
1003
1004
1004
###### minimum-session-expires
1005
1005
1006
1006
This sets the "Min-SE" value (in seconds) from [RFC 4028](http://tools.ietf.org/html/rfc4028). This value must not be less than 90 seconds.
When set to true, this param will make FreeSWITCH respond to incoming SIP OPTIONS with 503 "Maximum Calls In Progress" when FS is paused or maximum sessions has been exceeded.
1013
1013
1014
1014
When set to false or when not set at all (default behavior), SIP OPTIONS are always responded with 200 "OK".
Setting this param to true is especially useful if you're using a proxy such as OpenSIPS or Kamailio with dispatcher module to probe your FreeSWITCH servers by sending SIP OPTIONS.
1019
1019
@@ -1031,8 +1031,8 @@ Result will be that clients will not re-register at the same time-interval thus
Set this to the size of the [jitterbuffer](../../Codecs-and-Media/JitterBuffer_6587407.mdx#about) you would like to have on all calls coming through this profile.
`rtp_hold_timeout_sec deprecated use media_timeout variable.`
1089
1091
1090
1092
This channel variable configures the number of seconds of RTP inactivity (media silence) for a call placed on hold by an endpoint before FreeSWITCH considers the call disconnected, and hangs up. It is recommended that you use session timers instead, as some phones stop sending media when placed on hold. If this setting is omitted, the default value is "0", which disables the timeout.
@@ -1099,7 +1101,7 @@ When set to "true" (the default), FreeSWITCH will notice when more than one RTP
1099
1101
1100
1102
If rtp-autoflush-during-bridge is set to false, FreeSWITCH will instead preserve all RTP packets on bridged calls, even if it increases the latency or "lag" that callers hear.
@@ -1109,7 +1111,7 @@ Unlike "rtp-autoflush-during-bridge", the default is false, meaning that high-la
1109
1111
1110
1112
Setting "rtp-autoflush" to true will discard packets to minimize latency when possible. Doing so may cause errors in DTMF recognition, faxes, and other processes that rely on receiving all packets.
0 commit comments