Greatxam Darthart
Greatxam Darthart

Reputation: 188

Can I use Twisted as STUN/TURN (ICE) Server?

I want to implement a WebRTC peer connection. I do not know how to setup an ICE server or what tool should I use. Can anyone advice me on this. Thank you very much.

Upvotes: 3

Views: 1458

Answers (1)

Rubycon
Rubycon

Reputation: 18346

Actually you don't need to write your own STUN/TURN server

There are lots of ready solutions, especially this one is really good https://github.com/coturn/coturn/.

TURN is an extension of STUN, so TURN server supports all STUN operations as well

What you need is to install turn server on some server and put your WebRTC application to it

Upvotes: 4

Related Questions