From: lvl Date: Thu, 7 Nov 2019 17:05:39 +0000 (+0000) Subject: app_senddtmf: Add receive mode to AMI Action PlayDTMF X-Git-Tag: 17.1.0-rc1~18^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6345a002284e68ae5637088678a4491963d28845;p=thirdparty%2Fasterisk.git app_senddtmf: Add receive mode to AMI Action PlayDTMF ASTERISK-28614 Change-Id: I183501297ae1dc294ae56b34acac9b0343eb2664 --- diff --git a/apps/app_senddtmf.c b/apps/app_senddtmf.c index e0362e7d30..ea75a9e5fb 100644 --- a/apps/app_senddtmf.c +++ b/apps/app_senddtmf.c @@ -80,6 +80,9 @@ The duration, in milliseconds, of the digit to be played. + + Emulate receiving DTMF on this channel instead of sending it out. + Plays a dtmf digit on the specified channel. @@ -147,6 +150,7 @@ static int manager_play_dtmf(struct mansession *s, const struct message *m) const char *channel = astman_get_header(m, "Channel"); const char *digit = astman_get_header(m, "Digit"); const char *duration = astman_get_header(m, "Duration"); + const char *receive_s = astman_get_header(m, "Receive"); struct ast_channel *chan; unsigned int duration_ms = 0; @@ -167,7 +171,14 @@ static int manager_play_dtmf(struct mansession *s, const struct message *m) return 0; } - ast_senddigit_external(chan, *digit, duration_ms); + if (ast_true(receive_s)) { + struct ast_frame f = { AST_FRAME_DTMF, }; + f.len = duration_ms; + f.subclass.integer = *digit; + ast_queue_frame(chan, &f); + } else { + ast_senddigit_external(chan, *digit, duration_ms); + } chan = ast_channel_unref(chan);