aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/channel.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk/channel.h')
-rwxr-xr-xinclude/asterisk/channel.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index 9dd312466..67b0a5401 100755
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -703,11 +703,17 @@ int ast_sendtext(struct ast_channel *chan, char *text);
* Read a char of text from a channel
* Returns 0 on success, -1 on failure
*/
+int ast_recvchar(struct ast_channel *chan, int timeout);
+/*! Send a DTMF digit to a channel */
+/*!
+ * \param chan channel to act upon
+ * \param digit the DTMF digit to send, encoded in ASCII
+ * Send a DTMF digit to a channel.
+ * Returns 0 on success, -1 on failure
+ */
int ast_senddigit(struct ast_channel *chan, char digit);
-int ast_recvchar(struct ast_channel *chan, int timeout);
-
/*! Receives a text string from a channel */
/*!
* \param chan channel to act upon