summaryrefslogtreecommitdiff
path: root/bridges
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2013-01-21 17:55:48 +0000
committerRichard Mudgett <rmudgett@digium.com>2013-01-21 17:55:48 +0000
commit25c9940fc175df50636ec0af0feab992b943edf4 (patch)
tree8d4afb26ef5e887a00e36e1a68d2cefa4a306637 /bridges
parentff32e094e54e4749380d08f11dd380e60f146593 (diff)
Bridge API comment tweaks.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@379703 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'bridges')
-rw-r--r--bridges/bridge_builtin_features.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/bridges/bridge_builtin_features.c b/bridges/bridge_builtin_features.c
index 21af92855..13bf4bb8b 100644
--- a/bridges/bridge_builtin_features.c
+++ b/bridges/bridge_builtin_features.c
@@ -241,7 +241,11 @@ static int feature_attended_transfer(struct ast_bridge *bridge, struct ast_bridg
/*! \brief Internal built in feature for hangup */
static int feature_hangup(struct ast_bridge *bridge, struct ast_bridge_channel *bridge_channel, void *hook_pvt)
{
- /* This is very simple, we basically change the state on the bridge channel to end and the core takes care of the rest */
+ /*
+ * This is very simple, we simply change the state on the
+ * bridge_channel to force the channel out of the bridge and the
+ * core takes care of the rest.
+ */
ast_bridge_change_state(bridge_channel, AST_BRIDGE_CHANNEL_STATE_END);
return 0;
}