From b15729a34038405ee620c2a1af2d71738d49e3dc Mon Sep 17 00:00:00 2001
From: steve-lad <72376554+steve-lad@users.noreply.github.com>
Date: Mon, 5 Jul 2021 11:17:03 +0200
Subject: [PATCH] Change earlyrtp enum
chan-sccp enum is now yes / no and all older values equate to one of these. Help updated in chan-sccp revision: 566c8695
---
conf/sccpgeneral.xml.v433 | 27 +++++++++------------------
install.php | 3 +--
module.xml | 2 +-
3 files changed, 11 insertions(+), 21 deletions(-)
diff --git a/conf/sccpgeneral.xml.v433 b/conf/sccpgeneral.xml.v433
index 8991ff8..452e39c 100644
--- a/conf/sccpgeneral.xml.v433
+++ b/conf/sccpgeneral.xml.v433
@@ -396,17 +396,13 @@ and open the template in the editor. Base Version before all crash :-)
This option set global allow devices to do direct RTP sessions (default Off)
-
+ earlyrtp
- none
- Immediate
-
-
-
-
-
- The audio strem will be open in the progress and connected state. Valid options: NONE, progress, offhook, dial, ringout. Default may be Progress.
+
+
+
+ The audio stream will be open in the progress and connected state. Valid options: Yes/ Nosimulate_enbloc
@@ -1623,7 +1619,6 @@ and open the template in the editor. Base Version before all crash :-)
directrtp
- AutoThis option allow devices to do direct RTP sessions (default Off)
@@ -1631,14 +1626,10 @@ and open the template in the editor. Base Version before all crash :-)
earlyrtp
- NONE
- Immediate
-
-
-
-
-
- The audio stream will be open in the progress and connected state. Valid options: none, progress, offhook, dial, ringout. Default may be Progress.
+
+
+
+ The audio stream will be open in the progress and connected state. Valid options: Yes/ No
diff --git a/install.php b/install.php
index 045d62c..77b9083 100644
--- a/install.php
+++ b/install.php
@@ -121,8 +121,7 @@ function Get_DB_config($sccp_compatible)
'park' => array('create' => "enum('on','off') NOT NULL default 'on'", 'modify' => "enum('on','off')"),
'directrtp' => array('create' => "enum('no','yes') NOT NULL default 'no'", 'modify' => "enum('no','yes')"),
'dndFeature' => array('create' => "enum('on','off') NOT NULL default 'off'", 'modify' => "enum('on','off')"),
- 'earlyrtp' => array('create' => "ENUM('immediate','offHook','dialing','ringout','progress','none') NOT NULL default 'none'",
- 'modify' => "ENUM('immediate','offHook','dialing','ringout','progress','none')"),
+ 'earlyrtp' => array('create' => "ENUM('yes','no') NOT NULL default 'no'", 'modify' => "ENUM('yes','no')"),
'monitor' => array('create' => "enum('on','off') NOT NULL default 'off'", 'modify' => "enum('on','off')"),
'audio_tos' => array('create' => "VARCHAR(11) NOT NULL default '0xB8'",'modify' => "0xB8"),
'audio_cos' => array('create' => "VARCHAR(11) NOT NULL default '0x6'",'modify' => "0x6"),
diff --git a/module.xml b/module.xml
index 3e5c4c2..d600f86 100644
--- a/module.xml
+++ b/module.xml
@@ -1,7 +1,7 @@
sccp_managerSCCP Manager
- 14.3.0.0
+ 14.3.0.1setupSCCP ConnectivitySteve Lad, Alex GP