Reputation: 71
How to develop stun and turn servers for webrtc peer-to-peer application in c#? is there any library supports this?
I tried OfficeSip and didn't work also I tried coturn over cygwin but didn't work.
Upvotes: 7
Views: 5153
Reputation: 21370
I'm not sure if there's any STUN/TURN server or library implemented in C#.
The ones that I know of are
On the coturn page you can see a list of all the RFC that has to be implemented.
Frankly, I would not commit to such a huge task of implementing a TURN/STUN server. If you need one that works in Windows, and none of these work, you can try to run it in a VM or something like Docker.
Upvotes: 3