Update deprecated sip profile params (#6445)
* Update deprecated sip profile params Parameter names have changed. See here: https://freeswitch.org/confluence/display/FREESWITCH/Sofia+Configuration+Files When starting a profile, the following warnings would appear: [WARNING] sofia.c:5332 rtp-hold-timeout-sec deprecated use media_hold_timeout variable. [WARNING] sofia.c:5325 rtp-timeout-sec deprecated use media_timeout variable. Updating the parameters fixes the issue. * Update external.xml.noload Co-authored-by: FusionPBX <markjcrane@gmail.com>
This commit is contained in:
parent
53c20a156e
commit
3ec9cdaba1
|
|
@ -72,9 +72,11 @@
|
|||
<param name="sip-ip" value="$${local_ip_v4}"/>
|
||||
<param name="ext-rtp-ip" value="$${external_rtp_ip}"/>
|
||||
<param name="ext-sip-ip" value="$${external_sip_ip}"/>
|
||||
<param name="rtp-timeout-sec" value="300"/>
|
||||
<param name="rtp-hold-timeout-sec" value="1800"/>
|
||||
<!--<param name="enable-3pcc" value="true"/>-->
|
||||
<param name="rtp-timeout-sec" value="300" description="deprecated" enabled="false"/>
|
||||
<param name="rtp-hold-timeout-sec" value="1800" description="deprecated" enabled="false"/>
|
||||
<param name="media_timeout" value="300" enabled="true"/>
|
||||
<param name="media_hold_timeout" value="1800" enabled="true"/>
|
||||
<param name="enable-3pcc" value="true" enabled="false"/>
|
||||
|
||||
<!--session timers -->
|
||||
<param name="session-timeout" value="0" enabled="true"/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue