From 54991ca2a7dc23a3da064bd63c39fcdaf21143b7 Mon Sep 17 00:00:00 2001 From: Richard Mudgett Date: Fri, 20 Jul 2012 01:15:55 +0000 Subject: [PATCH] Add the AccountCode header to the AMI Hangup event. It's harder to correlate the Newchannel and Hangup AMI events without specifying "AccountCode" in both. (closes issue ASTERISK-19963) Reported by: Oleg A. Arkhangelsky Patches: hangup_acctcode.diff (license #6397) patch uploaded by Oleg A. Arkhangelsky git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@370309 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/channel.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main/channel.c b/main/channel.c index 1cfb76702a..6b4f8b721a 100644 --- a/main/channel.c +++ b/main/channel.c @@ -2758,6 +2758,7 @@ int ast_hangup(struct ast_channel *chan) "CallerIDName: %s\r\n" "ConnectedLineNum: %s\r\n" "ConnectedLineName: %s\r\n" + "AccountCode: %s\r\n" "Cause: %d\r\n" "Cause-txt: %s\r\n", ast_channel_name(chan), @@ -2766,6 +2767,7 @@ int ast_hangup(struct ast_channel *chan) S_COR(ast_channel_caller(chan)->id.name.valid, ast_channel_caller(chan)->id.name.str, ""), S_COR(ast_channel_connected(chan)->id.number.valid, ast_channel_connected(chan)->id.number.str, ""), S_COR(ast_channel_connected(chan)->id.name.valid, ast_channel_connected(chan)->id.name.str, ""), + ast_channel_accountcode(chan), ast_channel_hangupcause(chan), ast_cause2str(ast_channel_hangupcause(chan)) );