From: Russell Bryant Date: Wed, 21 Dec 2005 08:51:44 +0000 (+0000) Subject: add a header to indicate who the call was parked by to the ParkedCall manager X-Git-Tag: 1.4.0-beta1~3164 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f49974f3146fe8090fb1d15ebea6dee4493845ff;p=thirdparty%2Fasterisk.git add a header to indicate who the call was parked by to the ParkedCall manager events generated when parking status is requested. This header was already in the events that are generated when the call is first parked. (issue #5883) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@7569 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/res/res_features.c b/res/res_features.c index 68291fd2aa..7b58f9f6b2 100644 --- a/res/res_features.c +++ b/res/res_features.c @@ -1892,12 +1892,13 @@ static int manager_parking_status( struct mansession *s, struct message *m ) ast_cli(s->fd, "Event: ParkedCall\r\n" "Exten: %d\r\n" "Channel: %s\r\n" + "From: %s\r\n" "Timeout: %ld\r\n" "CallerID: %s\r\n" "CallerIDName: %s\r\n" "%s" "\r\n" - ,cur->parkingnum, cur->chan->name + ,cur->parkingnum, cur->chan->name, cur->peername ,(long)cur->start.tv_sec + (long)(cur->parkingtime/1000) - (long)time(NULL) ,(cur->chan->cid.cid_num ? cur->chan->cid.cid_num : "") ,(cur->chan->cid.cid_name ? cur->chan->cid.cid_name : "")