From 69b0eb24edf64af7aaadd9e8655b8e0c485a5b01 Mon Sep 17 00:00:00 2001
From: Russell Bryant <russell@russellbryant.com>
Date: Wed, 28 Feb 2007 19:57:41 +0000
Subject: [PATCH] Merged revisions 57144 via svnmerge from
 https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r57144 | russell | 2007-02-28 13:56:20 -0600 (Wed, 28 Feb 2007) | 6 lines

Merge changes from svn/asterisk/team/russell/sla_updates

* Add support for the "barge=no" option for trunks.  If this option is set,
  then stations will not be able to join in on a call that is on progress
  on this trunk.

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@57145 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 apps/app_meetme.c       | 35 ++++++++++++++++++++++++++---------
 configs/sla.conf.sample |  4 ++++
 2 files changed, 30 insertions(+), 9 deletions(-)

diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index f0d7a6013a..c385ab2976 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -405,6 +405,9 @@ struct sla_trunk {
 	unsigned int hold_stations;
 	struct ast_channel *chan;
 	unsigned int ring_timeout;
+	/*! If set to 1, no station will be able to join an active call with
+	 *  this trunk. */
+	unsigned int barge_disabled:1;
 };
 
 struct sla_trunk_ref {
@@ -1006,14 +1009,16 @@ static int sla_show_trunks(int fd, int argc, char **argv)
 		if (trunk->ring_timeout)
 			snprintf(ring_timeout, sizeof(ring_timeout), "%u Seconds", trunk->ring_timeout);
 		ast_cli(fd, "=== ---------------------------------------------------------\n"
-		            "=== Trunk Name:      %s\n"
-		            "=== ==> Device:      %s\n"
-					"=== ==> AutoContext: %s\n"
-					"=== ==> RingTimeout: %s\n"
+		            "=== Trunk Name:       %s\n"
+		            "=== ==> Device:       %s\n"
+					"=== ==> AutoContext:  %s\n"
+					"=== ==> RingTimeout:  %s\n"
+					"=== ==> BargeAllowed: %s\n"
 					"=== ==> Stations ...\n",
 					trunk->name, trunk->device, 
 					S_OR(trunk->autocontext, "(none)"), 
-					ring_timeout);
+					ring_timeout,
+		            trunk->barge_disabled ? "No" : "Yes");
 		AST_RWLIST_RDLOCK(&sla_stations);
 		AST_LIST_TRAVERSE(&trunk->stations, station_ref, entry)
 			ast_cli(fd, "===    ==> Station name: %s\n", station_ref->station->name);
@@ -3075,14 +3080,24 @@ static struct sla_station *sla_find_station(const char *name)
 	return station;
 }
 
+/*! \brief Find a trunk reference on a station by name
+ * \param station the station
+ * \param name the trunk's name
+ * \return a pointer to the station's trunk reference.  If the trunk
+ *         is not found, or if it is not idle and barge is disabled,
+ *         then NULL will be returned.
+ */
 static struct sla_trunk_ref *sla_find_trunk_ref_byname(const struct sla_station *station,
 	const char *name)
 {
 	struct sla_trunk_ref *trunk_ref = NULL;
 
 	AST_LIST_TRAVERSE(&station->trunks, trunk_ref, entry) {
-		if (!strcasecmp(trunk_ref->trunk->name, name))
-			break;
+		if (strcasecmp(trunk_ref->trunk->name, name))
+			continue;
+		if (trunk_ref->trunk->barge_disabled && trunk_ref->state != SLA_TRUNK_STATE_IDLE)
+			trunk_ref = NULL;
+		break;
 	}
 
 	return trunk_ref;
@@ -4017,7 +4032,7 @@ static int sla_station_exec(struct ast_channel *chan, void *data)
 		trunk_ref = sla_choose_idle_trunk(station);
 	AST_RWLIST_UNLOCK(&sla_trunks);
 
-	if (ast_strlen_zero(trunk_name) && !trunk_ref) {
+	if (!trunk_ref) {
 		ast_log(LOG_NOTICE, "No trunks available for call.\n");
 		pbx_builtin_setvar_helper(chan, "SLASTATION_STATUS", "CONGESTION");
 		return 0;
@@ -4349,7 +4364,9 @@ static int sla_build_trunk(struct ast_config *cfg, const char *cat)
 					var->value, trunk->name);
 				trunk->ring_timeout = 0;
 			}
-		} else if (strcasecmp(var->name, "type") && strcasecmp(var->name, "device")) {
+		} else if (!strcasecmp(var->name, "barge"))
+			trunk->barge_disabled = ast_false(var->value);
+		else if (strcasecmp(var->name, "type") && strcasecmp(var->name, "device")) {
 			ast_log(LOG_ERROR, "Invalid option '%s' specified at line %d of %s!\n",
 				var->name, var->lineno, SLA_CONFIG_FILE);
 		}
diff --git a/configs/sla.conf.sample b/configs/sla.conf.sample
index 701ed1d640..83129732b7 100644
--- a/configs/sla.conf.sample
+++ b/configs/sla.conf.sample
@@ -27,6 +27,10 @@
 ;ringtimeout=30           ; Set how long to allow this trunk to ring on an inbound call before hanging 
                           ; it up as an unanswered call.  The value is in seconds.
 
+;barge=no                 ; If this option is set to "no", then no station will be
+                          ; allowed to join a call that is in progress.  The default
+                          ; value is "yes".
+
 ;[line2]
 ;type=trunk
 ;device=Zap/4
-- 
GitLab