This was an unintentional consequence of the update of features.conf to use the
config framework in Asterisk 12. Thanks to Marco Signorini on the Asterisk
developers list for pointing out the problem.
........
Merged revisions 399237 from http://svn.asterisk.org/svn/asterisk/branches/12
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@399238
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
/*! DTMF sequence used to swap which party the transferer is talking to */
AST_STRING_FIELD(atxferswap);
);
- /*! Milliseconds allowed between digit presses when dialing transfer destination */
+ /*! Seconds allowed between digit presses when dialing transfer destination */
unsigned int transferdigittimeout;
/*! Milliseconds to wait for the transfer target to answer a transferred call */
unsigned int atxfernoanswertimeout;
ast_channel_unlock(chan);
return -1;
}
- digit_timeout = xfer_cfg->transferdigittimeout;
+ digit_timeout = xfer_cfg->transferdigittimeout * 1000;
ast_channel_unlock(chan);
/* Play the simple "transfer" prompt out and wait */
<configOption name="recordingfailsound">
<synopsis>Sound to play when automon or automixmon is attempted but fails to start</synopsis>
</configOption>
- <configOption name="transferdigittimeout" default="3000">
- <synopsis>Milliseconds allowed between digit presses when dialing a transfer destination</synopsis>
+ <configOption name="transferdigittimeout" default="3">
+ <synopsis>Seconds allowed between digit presses when dialing a transfer destination</synopsis>
</configOption>
<configOption name="atxfernoanswertimeout" default="15000">
<synopsis>Milliseconds to wait for attended transfer destination to answer</synopsis>