put ast_recvchar under its desc, add desc for ast_senddigit, don't use a

length limited copy for a static copy into a buffer that we *know* is big
enough


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6178 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2005-07-20 16:39:49 +00:00
parent 075a8ad21c
commit 5589a1e387
2 changed files with 12 additions and 6 deletions

View File

@@ -521,7 +521,7 @@ struct ast_channel *ast_channel_alloc(int needqueue)
tmp->fds[AST_MAX_FDS-1] = tmp->alertpipe[0]; tmp->fds[AST_MAX_FDS-1] = tmp->alertpipe[0];
/* And timing pipe */ /* And timing pipe */
tmp->fds[AST_MAX_FDS-2] = tmp->timingfd; tmp->fds[AST_MAX_FDS-2] = tmp->timingfd;
ast_copy_string(tmp->name, "**Unknown**", sizeof(tmp->name)); strcpy(tmp->name, "**Unkown**");
/* Initial state */ /* Initial state */
tmp->_state = AST_STATE_DOWN; tmp->_state = AST_STATE_DOWN;
tmp->streamid = -1; tmp->streamid = -1;
@@ -533,9 +533,9 @@ struct ast_channel *ast_channel_alloc(int needqueue)
headp = &tmp->varshead; headp = &tmp->varshead;
ast_mutex_init(&tmp->lock); ast_mutex_init(&tmp->lock);
AST_LIST_HEAD_INIT(headp); 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->language, defaultlanguage, sizeof(tmp->language));
ast_copy_string(tmp->exten, "s", sizeof(tmp->exten)); strcpy(tmp->exten, "s");
tmp->priority = 1; tmp->priority = 1;
tmp->amaflags = ast_default_amaflags; tmp->amaflags = ast_default_amaflags;
ast_copy_string(tmp->accountcode, ast_default_accountcode, sizeof(tmp->accountcode)); ast_copy_string(tmp->accountcode, ast_default_accountcode, sizeof(tmp->accountcode));

View File

@@ -703,11 +703,17 @@ int ast_sendtext(struct ast_channel *chan, char *text);
* Read a char of text from a channel * Read a char of text from a channel
* Returns 0 on success, -1 on failure * 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); 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);
/*! Receives a text string from a channel */ /*! Receives a text string from a channel */
/*! /*!
* \param chan channel to act upon * \param chan channel to act upon