projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d05d78
)
add count of parked calls to 'show parkedcalls' (bug #4023)
author
Kevin P. Fleming
<kpfleming@digium.com>
Wed, 20 Apr 2005 16:27:44 +0000
(16:27 +0000)
committer
Kevin P. Fleming
<kpfleming@digium.com>
Wed, 20 Apr 2005 16:27:44 +0000
(16:27 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5488
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
res/res_features.c
patch
|
blob
|
history
diff --git
a/res/res_features.c
b/res/res_features.c
index
178e72a
..
508a2e6
100755
(executable)
--- a/
res/res_features.c
+++ b/
res/res_features.c
@@
-1423,6
+1423,7
@@
static struct ast_cli_entry showfeatures =
static int handle_parkedcalls(int fd, int argc, char *argv[])
{
struct parkeduser *cur;
+ int numparked = 0;
ast_cli(fd, "%4s %25s (%-15s %-12s %-4s) %-6s \n", "Num", "Channel"
, "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 = cur->next;
+ numparked++;
}
+ ast_cli(fd, "%d parked call(s).\n",numparked);
ast_mutex_unlock(&parking_lock);