16

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.

AJ152
  • 671
  • 2
  • 12
  • 28

2 Answers2

4

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.

Community
  • 1
  • 1
Benjamin Trent
  • 7,378
  • 3
  • 31
  • 41
4

Check out this page: http://opentools.homeip.net/webrtc. It's exactly what your are looking for. WebRTC data stack with c# support and sample app.

Ylian
  • 65
  • 1
  • 2