summaryrefslogtreecommitdiff
path: root/include/asterisk/pbx.h
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2008-05-01 23:06:23 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2008-05-01 23:06:23 +0000
commitb5a127daac81d625b5968068b2e0406a3dc2e0e9 (patch)
tree3df7d1e791a878179b45272be0b3f3cccf8eeee0 /include/asterisk/pbx.h
parent44af1e23d05a2b9005a4be408978a2263bf7f1a7 (diff)
Modify TIMEOUT() to be accurate down to the millisecond.
(closes issue #10540) Reported by: spendergrass Patches: 20080417__bug10540.diff.txt uploaded by Corydon76 (license 14) Tested by: blitzrage git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@115076 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/pbx.h')
-rw-r--r--include/asterisk/pbx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/asterisk/pbx.h b/include/asterisk/pbx.h
index d38325bca..3e3669afb 100644
--- a/include/asterisk/pbx.h
+++ b/include/asterisk/pbx.h
@@ -112,8 +112,8 @@ int ast_build_timing(struct ast_timing *i, const char *info);
int ast_check_timing(const struct ast_timing *i);
struct ast_pbx {
- int dtimeout; /*!< Timeout between digits (seconds) */
- int rtimeout; /*!< Timeout for response (seconds) */
+ int dtimeoutms; /*!< Timeout between digits (milliseconds) */
+ int rtimeoutms; /*!< Timeout for response (milliseconds) */
};