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;
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));
* 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