dect
/
asterisk
Archived
13
0
Fork 0

Add a new manager event for our buddies status.

The new JabberStatus event gives a concise view of the status change to the AMI
clients. Thanks fiddur!

(closes issue #16760)
Reported by: fiddur
Patches:
      244498.2.diff uploaded by fiddur (license 678)
Tested by: fiddur, phsultan


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@247500 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
phsultan 2010-02-18 16:34:08 +00:00
parent 3fbc021972
commit fbea4f8872
2 changed files with 8 additions and 0 deletions

View File

@ -339,6 +339,8 @@ Asterisk Manager Interface
* The redirect command now has new parameters ExtraContext, ExtraExtension,
and ExtraPriority to allow redirecting the second channel to a different
location than the first.
* Added new event "JabberStatus" in the Jabber module to monitor buddies
status.
Channel Event Logging
---------------------

View File

@ -2394,6 +2394,12 @@ static void aji_handle_presence(struct aji_client *client, ikspak *pak)
default:
ast_debug(3, "JABBER: Kinky! how did that happen %i\n", pak->show);
}
manager_event(EVENT_FLAG_USER, "JabberStatus",
"Account: %s\r\nJID: %s\r\nResource: %s\r\nStatus: %d\r\nPriority: %d"
"\r\nDescription: %s\r\n",
client->name, pak->from->partial, found->resource, found->status,
found->priority, found->description);
}
/*!