From a0c5e2b9048eaaf5f7d69763b5598cafd8e5f42b Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Mon, 5 May 2008 15:56:53 +0000 Subject: [PATCH] change names to protect the innocent git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@8264 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- src/include/switch_module_interfaces.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/include/switch_module_interfaces.h b/src/include/switch_module_interfaces.h index f101e356ef..553336f30e 100644 --- a/src/include/switch_module_interfaces.h +++ b/src/include/switch_module_interfaces.h @@ -62,17 +62,17 @@ typedef enum { struct switch_state_handler_table { /*! executed when the state changes to init */ switch_state_handler_t on_init; - /*! executed when the state changes to ring */ + /*! executed when the state changes to routing */ switch_state_handler_t on_routing; /*! executed when the state changes to execute */ switch_state_handler_t on_execute; /*! executed when the state changes to hangup */ switch_state_handler_t on_hangup; - /*! executed when the state changes to loopback */ + /*! executed when the state changes to exchange_media */ switch_state_handler_t on_exchange_media; - /*! executed when the state changes to transmit */ + /*! executed when the state changes to soft_execute */ switch_state_handler_t on_soft_execute; - /*! executed when the state changes to hold */ + /*! executed when the state changes to consume_media */ switch_state_handler_t on_consume_media; /*! executed when the state changes to hibernate */ switch_state_handler_t on_hibernate;