summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorJeremy McNamara <jj@nufone.net>2004-03-19 09:37:28 +0000
committerJeremy McNamara <jj@nufone.net>2004-03-19 09:37:28 +0000
commit0ddcb1f6663f09f43995691609bcea0ae70abdb8 (patch)
tree2f5727079f3f55c6989d229e84e03df57e47089e /channel.c
parent785ac43c846bca54574a219db6ea2cf0a9a546cd (diff)
Add hangupcause to the hangup manager event
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2473 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/channel.c b/channel.c
index 02e004935..f5b9fc3d1 100755
--- a/channel.c
+++ b/channel.c
@@ -681,8 +681,9 @@ int ast_hangup(struct ast_channel *chan)
ast_mutex_unlock(&chan->lock);
manager_event(EVENT_FLAG_CALL, "Hangup",
"Channel: %s\r\n"
- "Uniqueid: %s\r\n",
- chan->name, chan->uniqueid);
+ "Uniqueid: %s\r\n"
+ "Cause: %i\r\n",
+ chan->name, chan->uniqueid, chan->hangupcause);
ast_channel_free(chan);
return res;
}