aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-25 14:37:35 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-25 14:37:35 +0000
commit056d568497159e15618aa29880451dbc1fcd8291 (patch)
tree038be7bb73b82f4bb5579aa837a796390f0f07ed /include/asterisk
parent558a908c4bfb98f337b9307c6a5a06516b2bc5ea (diff)
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.4@110628 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk')
-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 5b6ffe0eb..6ec2a7e0b 100644
--- a/include/asterisk/options.h
+++ b/include/asterisk/options.h
@@ -66,7 +66,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),