summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJenkins2 <jenkins2@gerrit.asterisk.org>2017-05-26 09:54:26 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2017-05-26 09:54:26 -0500
commit4e757a4ca0ebc9abbf52abd1991f1dfa03c55a17 (patch)
tree63ed936fa475d1cbfe3d411a794e7543eb0bdd42 /include
parent93fd4cf412f6f7c62485c22da7348c60295e744b (diff)
parentede77acaaf31ad5e7e414e4aea0be52a589d00ca (diff)
Merge "asterisk: Audit locking of channel when manipulating flags." into 14
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/channel.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index 3acd07774..820b56d81 100644
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -4310,6 +4310,31 @@ void ast_channel_dialed_causes_clear(const struct ast_channel *chan);
struct ast_flags *ast_channel_flags(struct ast_channel *chan);
/*!
+ * \since 13.17.0
+ * \brief Set a flag on a channel
+ *
+ * \param chan The channel to set the flag on
+ * \param flag The flag to set
+ *
+ * \note This will lock the channel internally. If the channel is already
+ * locked it is still safe to call.
+ */
+
+void ast_channel_set_flag(struct ast_channel *chan, unsigned int flag);
+
+/*!
+ * \since 13.17.0
+ * \param Clear a flag on a channel
+ *
+ * \param chan The channel to clear the flag from
+ * \param flag The flag to clear
+ *
+ * \note This will lock the channel internally. If the channel is already
+ * locked it is still safe to call.
+ */
+void ast_channel_clear_flag(struct ast_channel *chan, unsigned int flag);
+
+/*!
* \since 12.4.0
* \brief Return whether or not any manager variables have been set
*