From 79030adb09c99a8dc40a867f24abf33fe007b149 Mon Sep 17 00:00:00 2001 From: Bas van den Aakster Date: Sat, 15 Nov 2025 12:20:06 +0100 Subject: [PATCH] Update TURN server configuration to use UDP transport MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added ?transport=udp parameter to TURN server URL for improved connectivity. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- src/App.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.jsx b/src/App.jsx index e95604c..bc210fa 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -10,7 +10,7 @@ const RTC_CONFIG = { urls: ["stun:stun.ronde.vu:3478"] }, { - urls: ["turn:turn.ronde.vu:3478"], + urls: ["turn:turn.ronde.vu:3478?transport=udp"], username: "webrtcuser", credential: "supersecretpassword" }