I'm trying to create a webrtc
data channel between client to server.
(the data is different between each client so i need a unique connection between each client to my server)
After some research i concluded that i need to use a turn server and when a client connects to the turn server on the server side i need to act as the other peer and create the data channel, at least that what i think.
I don't need any signalling only pure webrtc
connection.
i tried to use this turn server https://github.com/coturn/coturn
but i will deeply appreciate any working example for server to client data channel without any signalling just pure webrtc
.
Thanks A lot!:)