aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-25 14:42:35 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-25 14:42:35 +0000
commit781febb687aaf05d7c2c75755b44ed22c4db5b9d (patch)
tree266c5f56391bd6428c97ff3b94c67b7b917c702b /include
parent8b046deb31946080398bd8a4a6e845e93708860f (diff)
Merged revisions 110629 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r110629 | file | 2008-03-25 11:39:45 -0300 (Tue, 25 Mar 2008) | 12 lines Merged revisions 110628 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r110628 | file | 2008-03-25 11:37:35 -0300 (Tue, 25 Mar 2008) | 4 lines Add an option (transmit_silence) which transmits silence during both Record() and DTMF generation. The reason this is an option is that in order to transmit silence we have to setup a translation path. This may not be needed/wanted in all cases. (closes issue #10058) Reported by: tracinet ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@110630 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/options.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/options.h b/include/asterisk/options.h
index f974ca2c9..794a75759 100644
--- a/include/asterisk/options.h
+++ b/include/asterisk/options.h
@@ -64,7 +64,7 @@ enum ast_option_flags {
AST_OPT_FLAG_OVERRIDE_CONFIG = (1 << 15),
/*! Reconnect */
AST_OPT_FLAG_RECONNECT = (1 << 16),
- /*! Transmit Silence during Record() */
+ /*! Transmit Silence during Record() and DTMF Generation */
AST_OPT_FLAG_TRANSMIT_SILENCE = (1 << 17),
/*! Suppress some warnings */
AST_OPT_FLAG_DONT_WARN = (1 << 18),