dect
/
asterisk
Archived
13
0
Fork 0

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
This commit is contained in:
kpfleming 2006-05-31 16:04:49 +00:00
parent 7374fa10aa
commit f4c3c5f3f3
1 changed files with 6 additions and 1 deletions

View File

@ -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;