Implementing webrtc data channel for Windows applications

c#, tcp, webrtc

Solution

There are no .NET implementations of WebRTC. Currently there are only the JavaScript APIs provided by browsers(FireFox, Chrome, etc.) and the Native C++/C API, which can be compiled in windows.

This SO Question may help you import the Native API into .NET but I am not sure if it is possible.

Maybe it is time to start on a .NET wrapper or implementation for WebRTC.

Problem

does any body know how to implement the WebRTC DataChannel API to Windows applications builded in C# to send TCP messages between clients behind NATs. This is not for a web application, it is Windows based only. Any inputs or ideas are greatly appreciated. Thanks.

Original source

Related problems