[asterisk-addons-commits] mnicholson: branch mnicholson/chan-mobile-refactor r786 - /team/mnicholson/ch...
SVN commits to the Asterisk addons project
asterisk-addons-commits at lists.digium.com
Fri Feb 20 10:30:28 CST 2009
Author: mnicholson
Date: Fri Feb 20 10:30:28 2009
New Revision: 786
URL: http://svn.digium.com/svn-view/asterisk-addons?view=rev&rev=786
Log:
don't wait for a response when sending dtmf digits
Modified:
team/mnicholson/chan-mobile-refactor/channels/chan_mobile.c
Modified: team/mnicholson/chan-mobile-refactor/channels/chan_mobile.c
URL: http://svn.digium.com/svn-view/asterisk-addons/team/mnicholson/chan-mobile-refactor/channels/chan_mobile.c?view=diff&rev=786&r1=785&r2=786
==============================================================================
--- team/mnicholson/chan-mobile-refactor/channels/chan_mobile.c (original)
+++ team/mnicholson/chan-mobile-refactor/channels/chan_mobile.c Fri Feb 20 10:30:28 2009
@@ -930,7 +930,7 @@
return 0;
ast_debug(1, "Dialed %c\n", digit);
- if (hfp_send_dtmf(pvt->hfp, digit) || !hfp_wait(pvt->hfp) || at_read(pvt->rfcomm_socket) != AT_OK) {
+ if (hfp_send_dtmf(pvt->hfp, digit)) {
return -1;
}
More information about the asterisk-addons-commits
mailing list