Hi,

    I wanted to send flash using sip info dtmf .. it says "Don't know
how to indicate condition 9"!!. it seems that sip dtmf supports flash
. So why not using 'f' character as a part of stream for flashing . I
think a little change in the code will work good ..

  A patch is attached for this support.

   let me know if there is any suggestion ..

-- 
-- Thanks

Kamanashis Roy
--- chan_sip.c.orig	2007-12-27 17:07:16.000000000 +0600
+++ chan_sip.c	2007-12-27 17:26:00.000000000 +0600
@@ -3921,6 +3921,9 @@
 		} else
 			res = -1;
 		break;
+	case AST_CONTROL_FLASH:
+		ast_senddigit(ast, 'f');
+		break;
 	case -1:
 		res = -1;
 		break;
_______________________________________________
--Bandwidth and Colocation Provided by http://www.api-digital.com--

asterisk-dev mailing list
To UNSUBSCRIBE or update options visit:
   http://lists.digium.com/mailman/listinfo/asterisk-dev

Reply via email to