Update deprecated sip profile params (#6447)

* 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 internal.xml.noload

Co-authored-by: FusionPBX <markjcrane@gmail.com>
This commit is contained in:
emak
2022-08-01 08:33:59 -06:00
committed by GitHub
co-authored by FusionPBX
parent d881ca7af6
commit 305ba420dc
@@ -258,8 +258,10 @@
<param name="ext-sip-ip" value="$${external_sip_ip}"/>
<!-- rtp inactivity timeout -->
<param name="rtp-timeout-sec" value="300"/>
<param name="rtp-hold-timeout-sec" value="1800"/>
<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"/>
<!-- VAD choose one (out is a good choice); -->
<!-- <param name="vad" value="in" enabled="false"/> -->
<param name="vad" value="out" enabled="false"/>