Index: apps/app_meetme.c =================================================================== --- apps/app_meetme.c (revision 217595) +++ apps/app_meetme.c (working copy) @@ -3228,9 +3228,24 @@ } else if (f->frametype == AST_FRAME_NULL) { /* Ignore NULL frames. It is perfectly normal to get these if the person is muted. */ } else { - ast_debug(1, + if (f->frametype == AST_FRAME_CONTROL) + { + switch (f->subclass) + { + 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); + } + }else + ast_debug(1, "Got unrecognized frame on channel %s, f->frametype=%d,f->subclass=%d\n", - chan->name, f->frametype, f->subclass); + chan->name, f->frametype, f->subclass); } ast_frfree(f); } else if (outfd > -1) {