[asterisk-commits] russell: branch 1.4 r53821 -
/branches/1.4/apps/app_meetme.c
asterisk-commits at lists.digium.com
asterisk-commits at lists.digium.com
Fri Feb 9 18:02:01 MST 2007
Author: russell
Date: Fri Feb 9 19:02:00 2007
New Revision: 53821
URL: http://svn.digium.com/view/asterisk?view=rev&rev=53821
Log:
Add some output for "show application SLAStation/SLATrunk"
Modified:
branches/1.4/apps/app_meetme.c
Modified: branches/1.4/apps/app_meetme.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/apps/app_meetme.c?view=diff&rev=53821&r1=53820&r2=53821
==============================================================================
--- branches/1.4/apps/app_meetme.c (original)
+++ branches/1.4/apps/app_meetme.c Fri Feb 9 19:02:00 2007
@@ -152,7 +152,9 @@
CONFFLAG_STARTMUTED = (1 << 24),
/*! Pass DTMF through the conference */
CONFFLAG_PASS_DTMF = (1 << 25),
+ /*! This is a SLA station. (Only for use by the SLA applications.) */
CONFFLAG_SLA_STATION = (1 << 26),
+ /*! This is a SLA trunk. (Only for use by the SLA applications.) */
CONFFLAG_SLA_TRUNK = (1 << 27),
};
@@ -282,10 +284,19 @@
"";
static const char *slastation_desc =
-" SLAStation():\n";
+" SLAStation(station):\n"
+"This application should be executed by an SLA station. The argument depends\n"
+"on how the call was initiated. If the phone was just taken off hook, then\n"
+"the argument \"station\" should be just the station name. If the call was\n"
+"initiated by pressing a line key, then the station name should be preceded\n"
+"by an underscore and the trunk name associated with that line button.\n"
+"For example: \"station1_line1\".";
static const char *slatrunk_desc =
-" SLATrunk():\n";
+" SLATrunk(trunk):\n"
+"This application should be executed by an SLA trunk on an inbound call.\n"
+"The channel calling this application should correspond to the SLA trunk\n"
+"with the name \"trunk\" that is being passed as an argument.\n";
#define MAX_CONFNUM 80
#define MAX_PIN 80
More information about the asterisk-commits
mailing list