Scenario: Webrtcpeer1 wants to send a video (send only data) to Webrtcpeer2. It turn out that webrtcpeer2 is behind a symmetric NAT and direct communication is not possible. Now both the peers contact a turn server and get their respective "relayed transport address" and share it with one other over the signaling channel along with their NAT " Server Reflexive transport address" as ICE candidates. Now a Webrtcpeer3 comes into the scene and wants to see the same video feed which webrtcpeer1 is sharing with webrtcpeer2. It turns out that webrtcpeer3 is also behind a symmetric NAT.
Questions:
Will WebRTC stack allocate a new "relayed transport address" for webrtcpeer1 for communicating with webrtcpeer3? OR can webrtcpeer1 use the existing "relayed transport address" it received while connecting with webrtcpeer2.
Does TURN support this? --> webrtcpeer1 sends a single video feed to the turn server( along with webrtcpeer2 and 3's "relayed transport address" info) and turn server somehow magically sends it to the respective "relayed transport address" of webrtcpeer2 and webrtcpeer3.