aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-10-13 23:14:19 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-10-13 23:14:19 +0000
commit666355cc8981ef6e1d2044de39c7704591d877ea (patch)
treec37fd1c22ac2ae103dfae098916b5e547b69ca09
parent156dd9b833a01f1f254accce9f7f1371e1c53f8e (diff)
add auto-monitor support (issue #5411)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6773 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xapps/app_dial.c4
-rwxr-xr-xapps/app_queue.c8
2 files changed, 10 insertions, 2 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index ac579fe94..3b2326188 100755
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -87,8 +87,8 @@ static char *descrip =
" ${EXITCONTEXT} or the current context.\n"
" 't' -- allow the called user to transfer the calling user by hitting #.\n"
" 'T' -- allow the calling user to transfer the call by hitting #.\n"
-" 'w' -- allow the called user to write the conversation to disk via app_monitor\n"
-" 'W' -- allow the calling user to write the conversation to disk via app_monitor\n"
+" 'w' -- allow the called user to write the conversation to disk via Monitor\n"
+" 'W' -- allow the calling user to write the conversation to disk via Monitor\n"
" 'f' -- Forces callerid to be set as the extension of the line \n"
" making/redirecting the outgoing call. For example, some PSTNs\n"
" don't allow callerids from other extensions then the ones\n"
diff --git a/apps/app_queue.c b/apps/app_queue.c
index c4813073c..071f9b57d 100755
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -130,6 +130,8 @@ static char *descrip =
"The option string may contain zero or more of the following characters:\n"
" 't' -- allow the called user transfer the calling user\n"
" 'T' -- to allow the calling user to transfer the call.\n"
+" 'w' -- allow the called user to write the conversation to disk via Monitor\n"
+" 'W' -- allow the calling user to write the conversation to disk via Monitor\n"
" 'd' -- data-quality (modem) call (minimum delay).\n"
" 'h' -- allow callee to hang up by hitting *.\n"
" 'H' -- allow caller to hang up by hitting *.\n"
@@ -1988,6 +1990,12 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
case 'T':
ast_set_flag(&(bridge_config.features_caller), AST_FEATURE_REDIRECT);
break;
+ case 'w':
+ ast_set_flag(&(bridge_config.features_callee), AST_FEATURE_AUTOMON);
+ break;
+ case 'W':
+ ast_set_flag(&(bridge_config.features_caller), AST_FEATURE_AUTOMON);
+ break;
case 'd':
nondataquality = 0;
break;