mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
Bug 1651601: Ignore remote trickle candidates for obsolete streams. r=mjf
Depends on D83545 Differential Revision: https://phabricator.services.mozilla.com/D85284
This commit is contained in:
parent
74ccbad5fb
commit
cc4ea1f325
@ -280,6 +280,10 @@ int nr_ice_peer_ctx_parse_trickle_candidate(nr_ice_peer_ctx *pctx, nr_ice_media_
|
||||
int r,_status;
|
||||
int needs_pairing = 0;
|
||||
|
||||
if (stream->obsolete) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
r_log(LOG_ICE,LOG_DEBUG,"ICE(%s): peer (%s) parsing trickle ICE candidate %s",pctx->ctx->label,pctx->label,candidate);
|
||||
r = nr_ice_peer_ctx_find_pstream(pctx, stream, &pstream);
|
||||
if (r)
|
||||
|
Loading…
Reference in New Issue
Block a user