mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
Add hangupcause to the hangup manager event
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2473 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user