Include ActionID in all events that are responsed to AMI Action SIPShowRegistry

(closes issue #15868)
Reported by: nic_bellamy
Patches: 
      manager_SIPshowregistry_actionid.patch uploaded by nic bellamy (license 299)



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@217593 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Olle Johansson 2009-09-10 12:06:55 +00:00
parent 98d156c5dd
commit c5b0e6e78e
1 changed files with 2 additions and 1 deletions

View File

@ -14796,6 +14796,7 @@ static int manager_show_registry(struct mansession *s, const struct message *m)
ASTOBJ_RDLOCK(iterator);
astman_append(s,
"Event: RegistryEntry\r\n"
"%s"
"Host: %s\r\n"
"Port: %d\r\n"
"Username: %s\r\n"
@ -14803,7 +14804,7 @@ static int manager_show_registry(struct mansession *s, const struct message *m)
"Refresh: %d\r\n"
"State: %s\r\n"
"RegistrationTime: %ld\r\n"
"\r\n", iterator->hostname, iterator->portno ? iterator->portno : STANDARD_SIP_PORT,
"\r\n", idtext, iterator->hostname, iterator->portno ? iterator->portno : STANDARD_SIP_PORT,
iterator->username, iterator->regdomain, iterator->refresh, regstate2str(iterator->regstate), (long) iterator->regtime.tv_sec);
ASTOBJ_UNLOCK(iterator);
total++;