mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 20:08:17 +00:00
add count of parked calls to 'show parkedcalls' (bug #4023)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5488 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1423,6 +1423,7 @@ static struct ast_cli_entry showfeatures =
|
|||||||
static int handle_parkedcalls(int fd, int argc, char *argv[])
|
static int handle_parkedcalls(int fd, int argc, char *argv[])
|
||||||
{
|
{
|
||||||
struct parkeduser *cur;
|
struct parkeduser *cur;
|
||||||
|
int numparked = 0;
|
||||||
|
|
||||||
ast_cli(fd, "%4s %25s (%-15s %-12s %-4s) %-6s \n", "Num", "Channel"
|
ast_cli(fd, "%4s %25s (%-15s %-12s %-4s) %-6s \n", "Num", "Channel"
|
||||||
, "Context", "Extension", "Pri", "Timeout");
|
, "Context", "Extension", "Pri", "Timeout");
|
||||||
@@ -1436,7 +1437,9 @@ static int handle_parkedcalls(int fd, int argc, char *argv[])
|
|||||||
,cur->priority, cur->start.tv_sec + (cur->parkingtime/1000) - time(NULL));
|
,cur->priority, cur->start.tv_sec + (cur->parkingtime/1000) - time(NULL));
|
||||||
|
|
||||||
cur = cur->next;
|
cur = cur->next;
|
||||||
|
numparked++;
|
||||||
}
|
}
|
||||||
|
ast_cli(fd, "%d parked call(s).\n",numparked);
|
||||||
|
|
||||||
ast_mutex_unlock(&parking_lock);
|
ast_mutex_unlock(&parking_lock);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user