aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_meetme.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-10 01:02:00 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-10 01:02:00 +0000
commit6524d722318f6dc0d3ed35a6941ac34f5d8c2c5c (patch)
tree06d4cc04174266ad9cc6f47f1798123758f8fd3b /apps/app_meetme.c
parent236fa3edc173a6a06a4eeb3597a83190b3dcc779 (diff)
Add some output for "show application SLAStation/SLATrunk"
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@53821 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_meetme.c')
-rw-r--r--apps/app_meetme.c15
1 files changed, 13 insertions, 2 deletions
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index df1eec003..f0d114bbf 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -152,7 +152,9 @@ enum {
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 *descrip3 =
"";
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