From 9a424b60150c7d2dba6401143ee8b7527a090c78 Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Sat, 15 Nov 2025 12:27:11 +0100 Subject: [PATCH] Add both UDP and TCP transports for TURN server MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated TURN server configuration to include both UDP and TCP transports for better compatibility and connection reliability. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/App.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/App.jsx b/src/App.jsx index bc210fa..b21199d 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -10,7 +10,10 @@ const RTC_CONFIG = { urls: ["stun:stun.ronde.vu:3478"] }, { - urls: ["turn:turn.ronde.vu:3478?transport=udp"], + urls: [ + "turn:turn.ronde.vu:3478?transport=udp", + "turn:turn.ronde.vu:3478?transport=tcp" + ], username: "webrtcuser", credential: "supersecretpassword" }