mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-06 01:45:11 +00:00
If we receive a frame that is not in any of the negotiated formats, then drop
it. (potentially issue #8781 and SPD-12) git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2@56010 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3043,6 +3043,11 @@ static struct ast_frame *sip_rtp_read(struct ast_channel *ast, struct sip_pvt *p
|
||||
/* We already hold the channel lock */
|
||||
if (f->frametype == AST_FRAME_VOICE) {
|
||||
if (f->subclass != p->owner->nativeformats) {
|
||||
if (!(f->subclass & p->jointcapability)) {
|
||||
ast_log(LOG_DEBUG, "Bogus frame of format '%s' received from '%s'!\n",
|
||||
ast_getformatname(f->subclass), p->owner->name);
|
||||
return &null_frame;
|
||||
}
|
||||
ast_log(LOG_DEBUG, "Oooh, format changed to %d\n", f->subclass);
|
||||
p->owner->nativeformats = f->subclass;
|
||||
ast_set_read_format(p->owner, p->owner->readformat);
|
||||
|
||||
Reference in New Issue
Block a user