From 4602d19afdfc10976352e3f4c9c836e26a691894 Mon Sep 17 00:00:00 2001 From: Martin Pycko Date: Thu, 24 Apr 2003 16:41:28 +0000 Subject: [PATCH] Allow use of immediate=yes with EM / EM_W signalling git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@906 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_zap.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/channels/chan_zap.c b/channels/chan_zap.c index 87268c54fe..1c16aec5d8 100755 --- a/channels/chan_zap.c +++ b/channels/chan_zap.c @@ -3666,8 +3666,11 @@ static void *ss_thread(void *data) else ast_dsp_digitmode(p->dsp,DSP_DIGITMODE_DTMF | p->dtmfrelax); } - /* Wait for the first digit (up to 5 seconds). */ - res = ast_waitfordigit(chan,5000); + /* Wait for the first digit only if immediate=no */ + if (!p->immediate) + /* Wait for the first digit (up to 5 seconds). */ + res = ast_waitfordigit(chan,5000); + else res = 0; if (res > 0) { /* save first char */ dtmfbuf[0] = res;