cloudjanak / idoubs

Automatically exported from code.google.com/p/idoubs
0 stars 0 forks source link

Add support for DTMF #11

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Add support for DTMF

Original issue reported on code.google.com by boss...@yahoo.fr on 2 Oct 2010 at 3:04

GoogleCodeExporter commented 8 years ago
I tried the DTMF by press the dialpad during a call but neither heard the dtmf 
tone nor received on the other end. How can I enable this on the latest version 
of idoubs?

Thanks,
KC

Original comment by android...@gmail.com on 11 Apr 2011 at 2:36

GoogleCodeExporter commented 8 years ago
In the InCallViewController there is a session started, (DWSipSession 
*)session, you can use this session variable to call the sendDTMF function.

Just do this:

-(IBAction)onButtonClick:(id)sender {
   int number = 1; //Change this to the value of the button that's clicked
   [self->session sendDTMF:number];
}

Original comment by nightfox...@gmail.com on 18 May 2011 at 9:02

GoogleCodeExporter commented 8 years ago
Fixed by revision 129 in iDoubs v2.x (audio call only)

Original comment by boss...@yahoo.fr on 5 Jun 2011 at 11:10