Hi all!
I want to develop the simplest WebRTC client transmitting an audio stream in C++ using native API and have some blocking issues. If I'm right then I need to specify at least one ICE (STUN/TURN) server in CreatePeerConnection(...). This is now stun:stun.l.google.com:19302. The purpose of this server is to find the path between my peer and the destination peer. But I simply don't know how to set the destination peer? Having executed CreateOffer(...) and SetLocalDescription(...), it provides with me via callback functions a lot of ICE candidates, but I don't see why it is sending me 'paths' to the intended client if I haven't set the destination peer. Or is it assuming not only the ICE server, but the destination peer is also stun.l.google.com:19302?
Could you please help me understand the fundamentals?
Thanks
It's getting clear.
Am I right?