mirror of
https://github.com/xtr-dev/rondevu-demo.git
synced 2025-12-10 02:43:23 +00:00
Add both UDP and TCP transports for TURN server
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 <noreply@anthropic.com>
This commit is contained in:
@@ -10,7 +10,10 @@ const RTC_CONFIG = {
|
|||||||
urls: ["stun:stun.ronde.vu:3478"]
|
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",
|
username: "webrtcuser",
|
||||||
credential: "supersecretpassword"
|
credential: "supersecretpassword"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user