Merged revisions 59522 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r59522 | murf | 2007-03-30 11:51:17 -0600 (Fri, 30 Mar 2007) | 1 line

several changes via kpflemings review
........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@59523 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Steve Murphy
2007-03-30 17:57:47 +00:00
parent 0f11d3c8c3
commit 09c0d56c5c
5 changed files with 131 additions and 105 deletions

View File

@@ -117,13 +117,13 @@ struct ast_cdr *ast_cdr_dup(struct ast_cdr *cdr);
/*! \brief Free a CDR record
* \param cdr ast_cdr structure to free
* Returns nothing important
* Returns nothing
*/
void ast_cdr_free(struct ast_cdr *cdr);
/*! \brief Discard and free a CDR record
* \param cdr ast_cdr structure to free
* Returns nothing important -- same as free, but no checks or complaints
* Returns nothing -- same as free, but no checks or complaints
*/
void ast_cdr_discard(struct ast_cdr *cdr);
@@ -165,7 +165,7 @@ void ast_cdr_unregister(const char *name);
/*!
* \param cdr the cdr you wish to associate with the call
* Starts all CDR stuff necessary for monitoring a call
* Returns nothing important
* Returns nothing
*/
void ast_cdr_start(struct ast_cdr *cdr);
@@ -180,21 +180,21 @@ void ast_cdr_answer(struct ast_cdr *cdr);
/*! Busy a call */
/*!
* \param cdr the cdr you wish to associate with the call
* Returns nothing important
* Returns nothing
*/
void ast_cdr_busy(struct ast_cdr *cdr);
/*! Fail a call */
/*!
* \param cdr the cdr you wish to associate with the call
* Returns nothing important
* Returns nothing
*/
void ast_cdr_failed(struct ast_cdr *cdr);
/*! Save the result of the call based on the AST_CAUSE_* */
/*!
* \param cdr the cdr you wish to associate with the call
* Returns nothing important
* Returns nothing
* \param cause the AST_CAUSE_*
*/
int ast_cdr_disposition(struct ast_cdr *cdr, int cause);
@@ -203,7 +203,7 @@ int ast_cdr_disposition(struct ast_cdr *cdr, int cause);
/*!
* \param cdr the cdr you have associated the call with
* Registers the end of call time in the cdr structure.
* Returns nothing important
* Returns nothing
*/
void ast_cdr_end(struct ast_cdr *cdr);