diff options
author | mcrane <mctch@yahoo.com> | 2009-07-04 04:24:59 -0600 |
---|---|---|
committer | mcrane <mctch@yahoo.com> | 2009-07-04 04:27:39 -0600 |
commit | d9f07bd4d5b9c5d69176d7badb07c8310ed38ddf (patch) | |
tree | 7cf0bd0e93486357a7c574bd6c8fb25d3412acc8 /config/freeswitch/freeswitch.inc | |
parent | 578fda76bb2566d8cf9deeaee3569a35da6ba63e (diff) | |
download | pfsense-packages-d9f07bd4d5b9c5d69176d7badb07c8310ed38ddf.tar.gz pfsense-packages-d9f07bd4d5b9c5d69176d7badb07c8310ed38ddf.tar.bz2 pfsense-packages-d9f07bd4d5b9c5d69176d7badb07c8310ed38ddf.zip |
FreeSWITCH package add ping parameter to advanced gateway options helps keep connections alive behind NAT, fix warning message when a gateway is disabled and later deleted, add effective_caller_id_name, effective_caller_id_number, outbound_caller_id_name, outbound_caller_id_number to the gateway
Diffstat (limited to 'config/freeswitch/freeswitch.inc')
-rw-r--r-- | config/freeswitch/freeswitch.inc | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/config/freeswitch/freeswitch.inc b/config/freeswitch/freeswitch.inc index fcba145e..9e4f0627 100644 --- a/config/freeswitch/freeswitch.inc +++ b/config/freeswitch/freeswitch.inc @@ -704,14 +704,17 @@ function sync_package_freeswitch_gateways() if (strlen($rowhelper['extension']) > 0) { $tmpxml .= " <param name=\"extension\" value=\"" . $rowhelper['extension'] . "\"/>\n"; } + if (strlen($rowhelper['ping']) > 0) { + $tmpxml .= " <param name=\"ping\" value=\"" . $rowhelper['ping'] . "\"/>\n"; + } if (strlen($rowhelper['context']) > 0) { $tmpxml .= " <param name=\"context\" value=\"" . $rowhelper['context'] . "\"/>\n"; } if (strlen($rowhelper['caller-id-in-from']) > 0) { - $tmpxml .= " <param name=\"context\" value=\"" . $rowhelper['context'] . "\"/>\n"; + $tmpxml .= " <param name=\"caller-id-in-from\" value=\"" . $rowhelper['caller-id-in-from'] . "\"/>\n"; } if (strlen($rowhelper['supress-cng']) > 0) { - $tmpxml .= " <param name=\"context\" value=\"" . $rowhelper['context'] . "\"/>\n"; + $tmpxml .= " <param name=\"supress-cng\" value=\"" . $rowhelper['supress-cng'] . "\"/>\n"; } $tmpxml .= " </gateway>\n"; @@ -2641,7 +2644,7 @@ function sync_package_freeswitch() function freeswitch_php_install_command() { global $config; - $freeswitch_package_version = "0.9.3.1"; + $freeswitch_package_version = "0.9.4"; $freeswitch_build_version = "1.0.4 pre 8"; $freeswitch_build_revision = "13784"; |