aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authoranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2005-03-30 22:09:01 +0000
committeranthm <anthm@f38db490-d61c-443f-a65b-d21fe96a405b>2005-03-30 22:09:01 +0000
commit7caf344d57ae3a5cdfd2bd3d800d86adcfa16dae (patch)
tree11e3c6d9a70422a415edb6b3608cc2bb4b2f9561 /channel.c
parent3bbd4c797b09f8f8193018d02d9e461a934a5a58 (diff)
increase queue length of chanspy queue
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5310 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 8394b80a8..44c12b8e1 100755
--- a/channel.c
+++ b/channel.c
@@ -731,7 +731,7 @@ static void ast_queue_spy_frame(struct ast_channel_spy *spy, struct ast_frame *f
for (tmpf=spy->queue[pos]; tmpf && tmpf->next; tmpf=tmpf->next) {
count++;
}
- if (count > 100) {
+ if (count > 1000) {
struct ast_frame *freef, *headf;
ast_log(LOG_ERROR, "Too Many frames queued at once, flushing cache.\n");