Update TURN server configuration to use UDP transport

Added ?transport=udp parameter to TURN server URL for improved connectivity.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-11-15 12:20:06 +01:00
parent 1f1502940b
commit 79030adb09

View File

@@ -10,7 +10,7 @@ const RTC_CONFIG = {
urls: ["stun:stun.ronde.vu:3478"] urls: ["stun:stun.ronde.vu:3478"]
}, },
{ {
urls: ["turn:turn.ronde.vu:3478"], urls: ["turn:turn.ronde.vu:3478?transport=udp"],
username: "webrtcuser", username: "webrtcuser",
credential: "supersecretpassword" credential: "supersecretpassword"
} }