summaryrefslogtreecommitdiff
path: root/include/asterisk
diff options
context:
space:
mode:
authorKinsey Moore <kmoore@digium.com>2013-06-19 12:55:34 +0000
committerKinsey Moore <kmoore@digium.com>2013-06-19 12:55:34 +0000
commit954166ed2486e5a44367ee1bd4e29b7bc8c8cf13 (patch)
tree924f23d9a78c5bab0e357c72c74be291a98a4240 /include/asterisk
parent68103abba38b3ccd362dd1e9018b4045b9b7cb57 (diff)
Pull CEL linkedid manipulation into cel.c
This finishes moving all CEL linkedid tracking entirely within cel.c since that is now possible with channel snapshots. This also removes another CEL linkedid manipulation function from cel.h that has already been internalized and is neither called nor available to link against. Review: https://reviewboard.asterisk.org/r/2632/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@392241 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/cel.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/include/asterisk/cel.h b/include/asterisk/cel.h
index 914037d4c..4f2445b93 100644
--- a/include/asterisk/cel.h
+++ b/include/asterisk/cel.h
@@ -148,31 +148,6 @@ const char *ast_cel_get_type_name(enum ast_cel_event_type type);
*/
enum ast_cel_event_type ast_cel_str_to_event_type(const char *name);
-/*!
- * \brief Check and potentially retire a Linked ID
- *
- * \param chan channel that is being destroyed or its linkedid is changing
- *
- * \since 1.8
- *
- * If at least one CEL backend is looking for CEL_LINKEDID_END
- * events, this function will check if the given channel is the last
- * active channel with that linkedid, and if it is, emit a
- * CEL_LINKEDID_END event.
- *
- * \return nothing
- */
-void ast_cel_check_retire_linkedid(struct ast_channel *chan);
-
-/*!
- * \brief Inform CEL that a new linkedid is being used
- * \since 11
- *
- * \retval -1 error
- * \retval 0 success
- */
-int ast_cel_linkedid_ref(const char *linkedid);
-
/*!
* \brief Create a fake channel from data in a CEL event
*