const peerConnection = new RTCPeerConnection(iceConfiguration); ```
and thereafter communicate directly with a local TCP or UDP socket, that can be sent back to WebRTC Data Channels https://datatracker.ietf.org/doc/html/rfc8831, negating the need for a second `RTCPeerConnection` to communicate directly with a local TCP or UDP socket through a local TURN server relay?
shakeeb nazmus
unread,
Jul 9, 2025, 7:16:56 AMJul 9
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to discuss-webrtc
The question is not very clear. WebRTC doesn't support RFC6062.
If the local TURN server means TURN server running on the local IP address without external mapping then It has no practical use cases, especially in real-world WebRTC deployments.
Thanks,
Shakeeb
guest271314
unread,
Jul 9, 2025, 10:25:30 AMJul 9
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to discuss...@googlegroups.com
Basically, connect a local RTCPeerConnection directly to a local TCP
or UDP server.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to discuss-webrtc
>>Basically, connect a local RTCPeerConnection directly to a local TCP or UDP server.
Got it. This should work. This doesn't need RFC6062. Need to configure and install TURN server properly.
Thanks,
Shakeeb.
guest271314
unread,
Jul 9, 2025, 10:43:16 AMJul 9
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to discuss...@googlegroups.com
> Got it. This should work. This doesn't need RFC6062. Need to configure and install TURN server properly.
There's the rub.
I'm trying to use TCPServerSocket in Chrome browser itself as the TURN
server. So the TURN server will be written in JavaScript or compiled
to WebAssembly.