aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-03 21:58:52 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2008-01-03 21:58:52 +0000
commitb00a3bb62287585178616b90af6c2d5a94a3dda6 (patch)
treed80e5c8fad0bdb7af3657e812b1434426e1ff827 /include/asterisk
parente2ccfacb813e8fdf8956657d8e16ea86c115fe16 (diff)
Document recent API addition
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@96368 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/channel.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asterisk/channel.h b/include/asterisk/channel.h
index 010d63d8f..efb87fde6 100644
--- a/include/asterisk/channel.h
+++ b/include/asterisk/channel.h
@@ -1109,13 +1109,13 @@ char *ast_recvtext(struct ast_channel *chan, int timeout);
*/
struct ast_channel *ast_channel_walk_locked(const struct ast_channel *prev);
-/*! \brief Get channel by name (locks channel) */
+/*! \brief Get channel by name or uniqueid (locks channel) */
struct ast_channel *ast_get_channel_by_name_locked(const char *chan);
-/*! \brief Get channel by name prefix (locks channel) */
+/*! \brief Get channel by name or uniqueid prefix (locks channel) */
struct ast_channel *ast_get_channel_by_name_prefix_locked(const char *name, const int namelen);
-/*! \brief Get channel by name prefix (locks channel) */
+/*! \brief Get channel by name or uniqueid prefix (locks channel) */
struct ast_channel *ast_walk_channel_by_name_prefix_locked(const struct ast_channel *chan, const char *name, const int namelen);
/*! \brief Get channel by exten (and optionally context) and lock it */