Sean DuBois

Results 605 comments of Sean DuBois

Hey @streamer45 Is this what you are trying to implement? You want to have one `TrackLocal` that can be used to send many different codecs? Since you are forwarding media...

This was fixed with the merging of https://github.com/pion/dtls/pull/600

Thanks for sharing how you fixed it @kevmo314! Would it be worth putting shims in a public repo, or do you think it’s better to do it per project? I...

Replaced with https://github.com/pion/webrtc/pull/2679

Hey @gbfarah You need to do a [ICE Restart](https://github.com/pion/webrtc/tree/master/examples/ice-restart) by default when a candidate has gone to selected it sits on the singular candidate. I like your suggestion and I...

I put up a proposal [here](https://github.com/pion/ice/issues/623) I would love your thoughts @gbfarah! I want to support your use case, but I don't think we can make it just a boolean....

Sorry this took so long @gbfarah! I have opened a PR for this. You will get notified of incoming STUN traffic, and you switch candidates as you wish. Would love...

I believe this does what you need! If you set the `BindingRequestHandler` and return `true` it will latch to the latest incoming ICE Traffic. I tested this today I moved...

> Does this mean that the client is the forced to perform an ice regathering upon detecting a disconnection Nope! The ICE Agent is constantly sending STUN Binding requests (to...

Hey @gbfarah check out [this](https://github.com/pion/webrtc/blob/master/settingengine_test.go#L284) test. To easily test/see the behavior change try always returning `true` from `SetICEBindingRequestHandler` and it will always switch to the latest IP it sees (from...