From: Richard Mudgett Date: Mon, 23 May 2011 17:53:44 +0000 (+0000) Subject: Add ConnectedLineNum/Name headers to output of AMI action Status. X-Git-Tag: 1.8.5-rc1~11^2~83 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5325746cfdb014fb119a7b4ba59f7757e735f60;p=thirdparty%2Fasterisk.git Add ConnectedLineNum/Name headers to output of AMI action Status. * Add ConnectedLineNum and ConnectedLineName headers to the output of the AMI action Status. This makes it easier to find out who the channel is connected to without having to lookup BridgedChannel or when they are connected to an application (e.g.: VoiceMail) which has no bridged channel. * Bridged channels with no CallerID had "" instead of "" output, that might be a bug as "" was what older versions used. (closes issue #18158) Reported by: gareth Patches: svn-292308.diff uploaded by gareth (license 208) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@320650 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/CHANGES b/CHANGES index c52f015b10..1305123a02 100644 --- a/CHANGES +++ b/CHANGES @@ -436,6 +436,8 @@ Asterisk Manager Interface * Added a new eventfilter option per user to allow whitelisting and blacklisting of events. * Added optional parkinglot variable for park command. + * Added ConnectedLineNum and ConnectedLineName headers to the output of Status + manager action. Channel Event Logging --------------------- diff --git a/main/manager.c b/main/manager.c index 315d0e6755..8ff07a489b 100644 --- a/main/manager.c +++ b/main/manager.c @@ -3192,6 +3192,8 @@ static int action_status(struct mansession *s, const struct message *m) "Channel: %s\r\n" "CallerIDNum: %s\r\n" "CallerIDName: %s\r\n" + "ConnectedLineNum: %s\r\n" + "ConnectedLineName: %s\r\n" "Accountcode: %s\r\n" "ChannelState: %d\r\n" "ChannelStateDesc: %s\r\n" @@ -3205,8 +3207,10 @@ static int action_status(struct mansession *s, const struct message *m) "%s" "\r\n", c->name, - S_COR(c->caller.id.number.valid, c->caller.id.number.str, ""), - S_COR(c->caller.id.name.valid, c->caller.id.name.str, ""), + S_COR(c->caller.id.number.valid, c->caller.id.number.str, ""), + S_COR(c->caller.id.name.valid, c->caller.id.name.str, ""), + S_COR(c->connected.id.number.valid, c->connected.id.number.str, ""), + S_COR(c->connected.id.name.valid, c->connected.id.name.str, ""), c->accountcode, c->_state, ast_state2str(c->_state), c->context, @@ -3218,6 +3222,8 @@ static int action_status(struct mansession *s, const struct message *m) "Channel: %s\r\n" "CallerIDNum: %s\r\n" "CallerIDName: %s\r\n" + "ConnectedLineNum: %s\r\n" + "ConnectedLineName: %s\r\n" "Account: %s\r\n" "State: %s\r\n" "%s" @@ -3228,6 +3234,8 @@ static int action_status(struct mansession *s, const struct message *m) c->name, S_COR(c->caller.id.number.valid, c->caller.id.number.str, ""), S_COR(c->caller.id.name.valid, c->caller.id.name.str, ""), + S_COR(c->connected.id.number.valid, c->connected.id.number.str, ""), + S_COR(c->connected.id.name.valid, c->connected.id.name.str, ""), c->accountcode, ast_state2str(c->_state), bridge, c->uniqueid, ast_str_buffer(str), idText);