From 472e08dd51c89b117b2a254596f4a086d722b54f Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Tue, 7 Feb 2006 20:56:16 +0000 Subject: [PATCH] update git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@555 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/include/switch_channel.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/include/switch_channel.h b/src/include/switch_channel.h index 7de22e8c7c..a56e2263aa 100644 --- a/src/include/switch_channel.h +++ b/src/include/switch_channel.h @@ -192,18 +192,18 @@ SWITCH_DECLARE(switch_status) switch_channel_clear_flag(switch_channel *channel, SWITCH_DECLARE(switch_status) switch_channel_answer(switch_channel *channel); /*! - \brief add an event handler table to a given channel - \param channel channel on which to add the event handler table - \param state_handler table of event handler functions + \brief add a state handler table to a given channel + \param channel channel on which to add the state handler table + \param state_handler table of state handler functions \return the index number/priority of the table negative value indicates failure */ SWITCH_DECLARE(int) switch_channel_add_state_handler(switch_channel *channel, const switch_state_handler_table *state_handler); /*! - \brief Retrieve an event handler tablefrom a given channel at given index level - \param channel channel from which to retrieve the event handler table - \param index the index of the event handler table (start from 0) - \return given channel's event handler table at given index or NULL if requested index does not exist. + \brief Retrieve an state handler tablefrom a given channel at given index level + \param channel channel from which to retrieve the state handler table + \param index the index of the state handler table (start from 0) + \return given channel's state handler table at given index or NULL if requested index does not exist. */ SWITCH_DECLARE(const switch_state_handler_table *) switch_channel_get_state_handler(switch_channel *channel, int index);