[Freeswitch-svn] [commit] r10486 - freeswitch/trunk/src/include

FreeSWITCH SVN mikej at freeswitch.org
Thu Nov 20 15:42:40 PST 2008


Author: mikej
Date: Thu Nov 20 18:42:39 2008
New Revision: 10486

Log:
FSCORE-213 add support for "F" for flash in dtmf

Modified:
   freeswitch/trunk/src/include/switch_utils.h

Modified: freeswitch/trunk/src/include/switch_utils.h
==============================================================================
--- freeswitch/trunk/src/include/switch_utils.h	(original)
+++ freeswitch/trunk/src/include/switch_utils.h	Thu Nov 20 18:42:39 2008
@@ -211,7 +211,7 @@
   \param key the key to test
   \return TRUE or FALSE
  */
-#define is_dtmf(key)  ((key > 47 && key < 58) || (key > 64 && key < 69) || (key > 96 && key < 101) || key == 35 || key == 42 || key == 87 || key == 119)
+#define is_dtmf(key)  ((key > 47 && key < 58) || (key > 64 && key < 69) || (key > 96 && key < 101) || key == 35 || key == 42 || key == 87 || key == 119 || key == 70)
 
 #define end_of(_s) *(*_s == '\0' ? _s : _s + strlen(_s) - 1)
 #define end_of_p(_s) (*_s == '\0' ? _s : _s + strlen(_s) - 1)



More information about the Freeswitch-svn mailing list