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
This commit is contained in:
Richard Mudgett 2012-07-20 01:15:55 +00:00
parent 2f674bcdd1
commit 54991ca2a7
1 changed files with 2 additions and 0 deletions

View File

@ -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, "<unknown>"),
S_COR(ast_channel_connected(chan)->id.number.valid, ast_channel_connected(chan)->id.number.str, "<unknown>"),
S_COR(ast_channel_connected(chan)->id.name.valid, ast_channel_connected(chan)->id.name.str, "<unknown>"),
ast_channel_accountcode(chan),
ast_channel_hangupcause(chan),
ast_cause2str(ast_channel_hangupcause(chan))
);