summaryrefslogtreecommitdiff
path: root/include/asterisk/cel.h
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2013-07-20 13:25:05 +0000
committerKinsey Moore <kmoore@digium.com>2013-07-20 13:25:05 +0000
commitc3b8939be8af2d297104e9afae7e81517d34c1d5 (patch)
tree1569c9afe53dc79d89d37dc701ac3b87d7fa5d5a /include/asterisk/cel.h
parent684c83b29b88d219aa406d0aa1673ee338c9159d (diff)
Add CEL local optimization record type
This adds a new CEL event type, AST_CEL_LOCAL_OPTIMIZE, to represent local channel optimizations. Local channel optimizations were one of several things conveyed by the now defunct BRIDGE_UPDATE event type. This also adds a unit test to test generation of this new CEL event. Review: https://reviewboard.asterisk.org/r/2676/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@394870 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/cel.h')
-rw-r--r--include/asterisk/cel.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/asterisk/cel.h b/include/asterisk/cel.h
index d17568824..394c0667d 100644
--- a/include/asterisk/cel.h
+++ b/include/asterisk/cel.h
@@ -87,6 +87,8 @@ enum ast_cel_event_type {
AST_CEL_FORWARD = 25,
/*! \brief a bridge turned into a conference and will be treated as such until it is torn down */
AST_CEL_BRIDGE_TO_CONF = 26,
+ /*! \brief A local channel optimization occurred */
+ AST_CEL_LOCAL_OPTIMIZE = 27,
};
/*!