Rishikeshan Sulochana/Lavakumar (Work)
Rishikeshan Sulochana/Lavakumar (Work)
Considering that SerenetyOS's libWeb and Ladybird are almost entirely written from scratch (no shared lineage with WebKit/KHTML), I'd love to see it in the list as well (as an outsider)....
It could be also in the form of a polyfill like https://github.com/murat-dogan/node-datachannel/tree/master/polyfill. It has been very helpful. I am just sharing ideas. These make life much easier as we can...
> When I find time, I will be happy to do it. Have you been able to make it work? WASI/WASM support is the only blocker missing for our usecase...
> > > When I find time, I will be happy to do it. > > > > > > Have you been able to make it work? WASI/WASM support...
https://learn.microsoft.com/en-us/previous-versions/ms783377(v=vs.85) This project is probably dead. The API is very neat, this implementation is probably the most compatible out of all the others and it's sad that this is the...
From what I've seen, the `RTCDataChannel.onopen` event does not fire. Can someone confirm whether this is the case for them too? `onmessage` fires properly whenever there is a message. It...
A temporary workaround that works, but if you like living dangerously: ```cs pc.ondatachannel += (rdc) => { // Put it here rdc.onopen += () => logger.LogDebug($"Data channel {rdc.label} opened."); //...
I can confirm that `onopen` at least fires, but at the wrong time, *much later*, at least on FreeBSD. SipSorcery works wonderfully (i.e. without major issues) on FreeBSD on dotnet...
Workaround: ```cs pc.onicecandidate += (c) => { pc.addLocalIceCandidate(c); Console.WriteLine(c); if (pc.localDescription != null) { if (pc.localDescription.sdp.IceCandidates == null) pc.localDescription.sdp.IceCandidates = new List(); if (c != null) pc.localDescription.sdp.IceCandidates.Add(c.ToString()); } }; ```
@lostmsu, thank you for finding this out. I would like to have the patches applied to the one I am currently using. It says that the commits don't belong to...