summaryrefslogtreecommitdiff
path: root/include/asterisk/options.h
diff options
context:
space:
mode:
authorOlle Johansson <oej@edvina.net>2012-04-25 09:32:21 +0000
committerOlle Johansson <oej@edvina.net>2012-04-25 09:32:21 +0000
commit7aa0c3c64bf90bbe32bd9b4f2ee8bf919fb0cdca (patch)
treef85f566cfe9e50e83b3e8da8960d477367b9e011 /include/asterisk/options.h
parent228ce5fd747a7c19dd2de34419c54a324e34404c (diff)
Make it possible to change the minimum DTMF duration in asterisk.conf
Asterisk has a setting for the minimum allowed DTMF. If we get shorter DTMF tones, these will be changed to the minimum on the outbound call leg. (closes issue ASTERISK-19772) Review: https://reviewboard.asterisk.org/r/1882/ Reported by: oej Tested by: oej Patches by: oej Thanks to the reviewers. 1.8 branch for this patch: agave-dtmf-duration-asterisk-conf-1.8 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@363558 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/options.h')
-rw-r--r--include/asterisk/options.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/asterisk/options.h b/include/asterisk/options.h
index c411b3aad..73fa42bce 100644
--- a/include/asterisk/options.h
+++ b/include/asterisk/options.h
@@ -157,6 +157,7 @@ extern int option_verbose;
extern int option_maxfiles; /*!< Max number of open file handles (files, sockets) */
extern int option_debug; /*!< Debugging */
extern int option_maxcalls; /*!< Maximum number of simultaneous channels */
+extern unsigned int option_dtmfminduration; /*!< Minimum duration of DTMF (channel.c) in ms */
extern double option_maxload;
#if defined(HAVE_SYSINFO)
extern long option_minmemfree; /*!< Minimum amount of free system memory - stop accepting calls if free memory falls below this watermark */