summaryrefslogtreecommitdiff
path: root/apps/app_externalivr.c
diff options
context:
space:
mode:
authorJeff Peeler <jpeeler@digium.com>2008-03-13 23:12:59 +0000
committerJeff Peeler <jpeeler@digium.com>2008-03-13 23:12:59 +0000
commit3c4c3c0dd2145f3890202dfd3c691f6222bb5c2a (patch)
tree94b1f6097dea6dec4d68c25d351feadda9fb89e5 /apps/app_externalivr.c
parent963a2cec51ca4689322c6ba5186b4a0472cbd334 (diff)
documenting changes as a result of adding TCP functionality to ExternalIVR
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@108639 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_externalivr.c')
-rw-r--r--apps/app_externalivr.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/app_externalivr.c b/apps/app_externalivr.c
index 5c63fb685..b01253d5c 100644
--- a/apps/app_externalivr.c
+++ b/apps/app_externalivr.c
@@ -52,13 +52,13 @@ static const char *app = "ExternalIVR";
static const char *synopsis = "Interfaces with an external IVR application";
static const char *descrip =
-" ExternalIVR(command[,arg[,arg...]]): Forks a process to run the supplied command,\n"
-"and starts a generator on the channel. The generator's play list is\n"
-"controlled by the external application, which can add and clear entries\n"
-"via simple commands issued over its stdout. The external application\n"
-"will receive all DTMF events received on the channel, and notification\n"
-"if the channel is hung up. The application will not be forcibly terminated\n"
-"when the channel is hung up.\n"
+" ExternalIVR(command|ivr://ivrhost[,arg[,arg...]]): Either forks a process\n"
+"to run given command or makes a socket to connect to given host and starts\n"
+"a generator on the channel. The generator's play list is controlled by the\n"
+"external application, which can add and clear entries via simple commands\n"
+"issued over its stdout. The external application will receive all DTMF events\n"
+"received on the channel, and notification if the channel is hung up. The\n"
+"application will not be forcibly terminated when the channel is hung up.\n"
"See doc/externalivr.txt for a protocol specification.\n";
/* XXX the parser in gcc 2.95 gets confused if you don't put a space between 'name' and the comma */