summaryrefslogtreecommitdiff
path: root/include/asterisk/channel.h
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2009-04-24 15:26:10 +0000
committerRussell Bryant <russell@russellbryant.com>2009-04-24 15:26:10 +0000
commitf052718a803afafc58b9286f619299d6ec482ff5 (patch)
tree5aff0a2e2745ad5a1375e695d295a27ffde38c0b /include/asterisk/channel.h
parentc878b218878be2b251e470c494dec825989639ea (diff)
Add \since tag for new API calls.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@190484 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/channel.h')
-rw-r--r--include/asterisk/channel.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index 8dc18e569..a114eb089 100644
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -1013,6 +1013,8 @@ void ast_change_name(struct ast_channel *chan, const char *newname);
* if it is still there and also release the current reference to the channel.
*
* \return NULL, convenient for clearing invalid pointers
+ *
+ * \since 1.6.3
*/
struct ast_channel *ast_channel_release(struct ast_channel *chan);
@@ -2092,6 +2094,8 @@ struct ast_channel_iterator;
*
* \return NULL, for convenience to clear out the pointer to the iterator that
* was just destroyed.
+ *
+ * \since 1.6.3
*/
struct ast_channel_iterator *ast_channel_iterator_destroy(struct ast_channel_iterator *i);
@@ -2108,6 +2112,8 @@ struct ast_channel_iterator *ast_channel_iterator_destroy(struct ast_channel_ite
*
* \retval NULL on failure
* \retval a new channel iterator based on the specified parameters
+ *
+ * \since 1.6.3
*/
struct ast_channel_iterator *ast_channel_iterator_by_exten_new(int ao2_flags, const char *exten,
const char *context);
@@ -2127,6 +2133,8 @@ struct ast_channel_iterator *ast_channel_iterator_by_exten_new(int ao2_flags, co
*
* \retval NULL on failure
* \retval a new channel iterator based on the specified parameters
+ *
+ * \since 1.6.3
*/
struct ast_channel_iterator *ast_channel_iterator_by_name_new(int ao2_flags, const char *name,
size_t name_len);
@@ -2141,6 +2149,8 @@ struct ast_channel_iterator *ast_channel_iterator_by_name_new(int ao2_flags, con
*
* \retval NULL on failure
* \retval a new channel iterator
+ *
+ * \since 1.6.3
*/
struct ast_channel_iterator *ast_channel_iterator_all_new(int ao2_flags);
@@ -2156,6 +2166,8 @@ struct ast_channel_iterator *ast_channel_iterator_all_new(int ao2_flags);
* \retval the next channel that matches the parameters used when the iterator
* was created.
* \retval NULL, if no more channels match the iterator parameters.
+ *
+ * \since 1.6.3
*/
struct ast_channel *ast_channel_iterator_next(struct ast_channel_iterator *i);
@@ -2166,6 +2178,8 @@ struct ast_channel *ast_channel_iterator_next(struct ast_channel_iterator *i);
*
* This function executes a callback one time for each active channel on the
* system. The channel is provided as an argument to the function.
+ *
+ * \since 1.6.3
*/
struct ast_channel *ast_channel_callback(ao2_callback_data_fn *cb_fn, void *arg,
void *data, int ao2_flags);
@@ -2181,6 +2195,8 @@ struct ast_channel *ast_channel_callback(ao2_callback_data_fn *cb_fn, void *arg,
*
* \retval a channel with the name specified by the argument
* \retval NULL if no channel was found
+ *
+ * \since 1.6.3
*/
struct ast_channel *ast_channel_get_by_name(const char *name);
@@ -2194,6 +2210,8 @@ struct ast_channel *ast_channel_get_by_name(const char *name);
*
* \retval a channel with the name prefix specified by the arguments
* \retval NULL if no channel was found
+ *
+ * \since 1.6.3
*/
struct ast_channel *ast_channel_get_by_name_prefix(const char *name, size_t name_len);
@@ -2207,6 +2225,8 @@ struct ast_channel *ast_channel_get_by_name_prefix(const char *name, size_t name
*
* \retval a channel that is at the specified extension and context
* \retval NULL if no channel was found
+ *
+ * \since 1.6.3
*/
struct ast_channel *ast_channel_get_by_exten(const char *exten, const char *context);