You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 25, 2026. It is now read-only.
I am reviewing my bundle implementation in the wicked shim after running into some bundle-related issues during renegotation.
One thing I noticed in particular is that unless the bundlePolicy is set to max-bundle I create different ice gatherers when creating an offer in balanced mode. I do this to gather "ICE candidates for each media type in use (audio, video, and data)".
I am reviewing my bundle implementation in the wicked shim after running into some bundle-related issues during renegotation.
One thing I noticed in particular is that unless the bundlePolicy is set to max-bundle I create different ice gatherers when creating an offer in balanced mode. I do this to gather "ICE candidates for each media type in use (audio, video, and data)".
Unfortunately this means that the local parameters (ufrag/pwd) for each transport will be different which is differing from the behaviour of chrome and firefox (that behaviour probably comes from https://tools.ietf.org/html/draft-ietf-mmusic-sdp-bundle-negotiation-39#section-11.1)
I think this an instance of the good old "I would like to be able to create a gatherer with ufrag/pwd" problem