aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/cdr.h
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-03-30 17:51:17 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2007-03-30 17:51:17 +0000
commitf81c7dab7fbfa831813185130c7d013d366a3917 (patch)
tree6c1b9b9732efb82702360095591d99dc11c3cd93 /include/asterisk/cdr.h
parent3bbd029dc1830cd9c95e80d40b94b497e8eb03ce (diff)
several changes via kpflemings review
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@59522 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/cdr.h')
-rw-r--r--include/asterisk/cdr.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/include/asterisk/cdr.h b/include/asterisk/cdr.h
index 1fb4f634b..152b82e7d 100644
--- a/include/asterisk/cdr.h
+++ b/include/asterisk/cdr.h
@@ -114,13 +114,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);
@@ -162,7 +162,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);
@@ -177,21 +177,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);
@@ -200,7 +200,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);