aboutsummaryrefslogtreecommitdiffstats
path: root/channel.c
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-31 16:04:49 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-31 16:04:49 +0000
commitf4c3c5f3f3012ac3d80466aebc00f4941f3ebeb7 (patch)
tree284a157a4b0add0220ed32a93e1d5b4f07cd036d /channel.c
parent7374fa10aa62ad16e10fad7a9ae5c212874c6e0d (diff)
a few more control frame types that don't need to generate useless notices in the log
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@31044 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channel.c')
-rw-r--r--channel.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 597b18076..59789e93f 100644
--- a/channel.c
+++ b/channel.c
@@ -2547,7 +2547,12 @@ struct ast_channel *__ast_request_and_dial(const char *type, int format, void *d
timeout = 0; /* trick to force exit from the while() */
break;
- case AST_CONTROL_PROGRESS: /* Ignore */
+ /* Ignore these */
+ case AST_CONTROL_PROGRESS:
+ case AST_CONTROL_PROCEEDING:
+ case AST_CONTROL_HOLD:
+ case AST_CONTROL_UNHOLD:
+ case AST_CONTROL_VIDUPDATE:
case -1: /* Ignore -- just stopping indications */
break;