[Asterisk-cvs] asterisk/apps app_disa.c,1.15,1.16

markster at lists.digium.com markster at lists.digium.com
Sat Aug 28 15:37:34 CDT 2004


Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv1355/apps

Modified Files:
	app_disa.c 
Log Message:
Update DISA to be internationalized (bug #2284)


Index: app_disa.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_disa.c,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- app_disa.c	28 Aug 2004 17:33:43 -0000	1.15
+++ app_disa.c	28 Aug 2004 19:41:18 -0000	1.16
@@ -92,6 +92,16 @@
 	return(ms);
 }
 
+static void play_dialtone(struct ast_channel *chan)
+{
+	const struct tone_zone_sound *ts = NULL;
+	ts = ast_get_indication_tone(chan->zone, "dial");
+	if (ts)
+		ast_playtones_start(chan, 0, ts->data, 0);
+	else
+		ast_tonepair_start(chan, 350, 440, 0, 0);
+}
+
 static int disa_exec(struct ast_channel *chan, void *data)
 {
 	int i,j,k,x;
@@ -155,7 +165,7 @@
 	}
 	gettimeofday(&lastdigittime,NULL);
 
-	ast_tonepair_start(chan, 350, 440, 0, 0);
+	play_dialtone(chan);
 
 	for(;;)
 	{
@@ -255,7 +265,7 @@
 					}
 					 /* password good, set to dial state */
 					ast_log(LOG_DEBUG,"DISA on chan %s password is good\n",chan->name);
-					ast_tonepair_start(chan, 350, 440, 0, 0);
+					play_dialtone(chan);
 
 					k = 1;
 					i = 0;  /* re-set buffer pointer */




More information about the svn-commits mailing list