diff --git a/apps/app_meetme.c b/apps/app_meetme.c index 1ad67690b71d22fa545560291ea582338c42b463..0cfd8986c24458f1e8eeedaf4a6ba5b43b3b1d9e 100644 --- a/apps/app_meetme.c +++ b/apps/app_meetme.c @@ -3439,6 +3439,18 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, struc } } else if (f->frametype == AST_FRAME_NULL) { /* Ignore NULL frames. It is perfectly normal to get these if the person is muted. */ + } else if (f->frametype == AST_FRAME_CONTROL) { + switch (f->subclass.integer) { + case AST_CONTROL_BUSY: + case AST_CONTROL_CONGESTION: + ast_frfree(f); + goto outrun; + break; + default: + ast_debug(1, + "Got ignored control frame on channel %s, f->frametype=%d,f->subclass=%d\n", + chan->name, f->frametype, f->subclass.integer); + } } else { ast_debug(1, "Got unrecognized frame on channel %s, f->frametype=%d,f->subclass=%d\n",