summaryrefslogtreecommitdiff
path: root/include/asterisk/cdr.h
diff options
context:
space:
mode:
authorJonathan Rose <jrose@digium.com>2011-07-27 20:42:18 +0000
committerJonathan Rose <jrose@digium.com>2011-07-27 20:42:18 +0000
commit3ee80d6a90c5ce59f20f9dfc89d7f3faaa4fd753 (patch)
tree6f0c57e23a37802b9b7309186c840e518f0f56d7 /include/asterisk/cdr.h
parent1e332468dcef968070158b65ef532789ed6f1713 (diff)
Adds cdr logging of calls resulting in CONGESTION
Applies a patch made a long time ago by alecdavis which adds a CDR feature for logging calls that failed due to congestion. (closes issue #15907) Reported by: alecdavis Patches: cdr_congestion.diff.txt uploaded by alecdavis (license #5546) Review: https://reviewboard.asterisk.org/r/454/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@329835 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/cdr.h')
-rw-r--r--include/asterisk/cdr.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/asterisk/cdr.h b/include/asterisk/cdr.h
index 5442fdb0c..2134e0ffb 100644
--- a/include/asterisk/cdr.h
+++ b/include/asterisk/cdr.h
@@ -58,6 +58,7 @@ enum {
AST_CDR_FAILED = (1 << 1),
AST_CDR_BUSY = (1 << 2),
AST_CDR_ANSWERED = (1 << 3),
+ AST_CDR_CONGESTION = (1 << 4),
};
/*!
@@ -267,6 +268,15 @@ void ast_cdr_answer(struct ast_cdr *cdr);
extern void ast_cdr_noanswer(struct ast_cdr *cdr);
/*!
+ * \brief A call was set to congestion
+ * \param cdr the cdr you wish to associate with the call
+ * Markst he channel disposition as "CONGESTION"
+ * Will skip CDR's in chain with ANS_LOCK bit set. (see
+ * forkCDR() application
+ */
+extern void ast_cdr_congestion(struct ast_cdr *cdr);
+
+/*!
* \brief Busy a call
* \param cdr the cdr you wish to associate with the call
* Marks the channel disposition as "BUSY"