aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xchannel.c6
-rwxr-xr-xinclude/asterisk/channel.h10
2 files changed, 11 insertions, 5 deletions
diff --git a/channel.c b/channel.c
index c2e4a77cf..71c6c8581 100755
--- a/channel.c
+++ b/channel.c
@@ -521,7 +521,7 @@ struct ast_channel *ast_channel_alloc(int needqueue)
tmp->fds[AST_MAX_FDS-1] = tmp->alertpipe[0];
/* And timing pipe */
tmp->fds[AST_MAX_FDS-2] = tmp->timingfd;
- ast_copy_string(tmp->name, "**Unknown**", sizeof(tmp->name));
+ strcpy(tmp->name, "**Unkown**");
/* Initial state */
tmp->_state = AST_STATE_DOWN;
tmp->streamid = -1;
@@ -533,9 +533,9 @@ struct ast_channel *ast_channel_alloc(int needqueue)
headp = &tmp->varshead;
ast_mutex_init(&tmp->lock);
AST_LIST_HEAD_INIT(headp);
- ast_copy_string(tmp->context, "default", sizeof(tmp->context));
+ strcpy(tmp->context, "default");
ast_copy_string(tmp->language, defaultlanguage, sizeof(tmp->language));
- ast_copy_string(tmp->exten, "s", sizeof(tmp->exten));
+ strcpy(tmp->exten, "s");
tmp->priority = 1;
tmp->amaflags = ast_default_amaflags;
ast_copy_string(tmp->accountcode, ast_default_accountcode, sizeof(tmp->accountcode));
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